Temporarily remove assert while I dig in to issues that it's causing for LLDB.

<rdar://problem/16349536>



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204975 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Lang Hames 2014-03-27 22:45:42 +00:00
parent e159d3ec4a
commit d21857ce15

View File

@ -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();