[llvm] r204975 - Temporarily remove assert while I dig in to issues that it's causing for LLDB.

Lang Hames lhames at gmail.com
Thu Mar 27 15:45:42 PDT 2014


Author: lhames
Date: Thu Mar 27 17:45:42 2014
New Revision: 204975

URL: http://llvm.org/viewvc/llvm-project?rev=204975&view=rev
Log:
Temporarily remove assert while I dig in to issues that it's causing for LLDB.

<rdar://problem/16349536>


Modified:
    llvm/trunk/include/llvm/MC/MCSymbolizer.h

Modified: llvm/trunk/include/llvm/MC/MCSymbolizer.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCSymbolizer.h?rev=204975&r1=204974&r2=204975&view=diff
==============================================================================
--- llvm/trunk/include/llvm/MC/MCSymbolizer.h (original)
+++ llvm/trunk/include/llvm/MC/MCSymbolizer.h Thu Mar 27 17:45:42 2014
@@ -49,8 +49,6 @@ public:
   /// \brief Construct an MCSymbolizer, taking ownership of \p RelInfo.
   MCSymbolizer(MCContext &Ctx, std::unique_ptr<MCRelocationInfo> RelInfo)
     : Ctx(Ctx), RelInfo(std::move(RelInfo)) {
-    assert(this->RelInfo != nullptr &&
-           "Cannot construct MCSymbolizer without relocation info.");
   }
 
   virtual ~MCSymbolizer();





More information about the llvm-commits mailing list