From: Lang Hames Date: Thu, 27 Mar 2014 22:45:42 +0000 (+0000) Subject: Temporarily remove assert while I dig in to issues that it's causing for LLDB. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d21857ce15127eb3eb6d6957983906e30a0506b7;p=oota-llvm.git Temporarily remove assert while I dig in to issues that it's causing for LLDB. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204975 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/MC/MCSymbolizer.h b/include/llvm/MC/MCSymbolizer.h index 7861efb859f..cbbb591f1b8 100644 --- a/include/llvm/MC/MCSymbolizer.h +++ b/include/llvm/MC/MCSymbolizer.h @@ -49,8 +49,6 @@ public: /// \brief Construct an MCSymbolizer, taking ownership of \p RelInfo. MCSymbolizer(MCContext &Ctx, std::unique_ptr RelInfo) : Ctx(Ctx), RelInfo(std::move(RelInfo)) { - assert(this->RelInfo != nullptr && - "Cannot construct MCSymbolizer without relocation info."); } virtual ~MCSymbolizer();