[llvm-commits] CVS: llvm/lib/VMCore/Pass.cpp
Chris Lattner
sabre at nondot.org
Tue May 1 21:02:02 PDT 2007
Changes in directory llvm/lib/VMCore:
Pass.cpp updated: 1.88 -> 1.89
---
Log message:
disable this assertion as a hack to get the build more unbroken :(
---
Diffs of the changes: (+1 -1)
Pass.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/VMCore/Pass.cpp
diff -u llvm/lib/VMCore/Pass.cpp:1.88 llvm/lib/VMCore/Pass.cpp:1.89
--- llvm/lib/VMCore/Pass.cpp:1.88 Tue May 1 16:15:47 2007
+++ llvm/lib/VMCore/Pass.cpp Tue May 1 23:01:44 2007
@@ -155,7 +155,7 @@
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) {
More information about the llvm-commits
mailing list