From: Chris Lattner Date: Wed, 2 May 2007 04:01:44 +0000 (+0000) Subject: disable this assertion as a hack to get the build more unbroken :( X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=8fa8a68c216fd904a3356742d4fe05e7926e9930;p=oota-llvm.git disable this assertion as a hack to get the build more unbroken :( git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36637 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Pass.cpp b/lib/VMCore/Pass.cpp index 2f581c51abf..b45f427cbcf 100644 --- a/lib/VMCore/Pass.cpp +++ b/lib/VMCore/Pass.cpp @@ -155,7 +155,7 @@ public: void RegisterPass(PassInfo &PI) { bool Inserted = PassInfoMap.insert(std::make_pair(PI.getTypeInfo(),&PI)).second; - assert(Inserted && "Pass registered multiple times!"); + //assert(Inserted && "Pass registered multiple times!"); } void UnregisterPass(PassInfo &PI) {