[llvm-commits] [llvm] r123215 - /llvm/trunk/lib/Analysis/MemoryDependenceAnalysis.cpp

Jakob Stoklund Olesen stoklund at 2pi.dk
Mon Jan 10 20:05:39 PST 2011


Author: stoklund
Date: Mon Jan 10 22:05:39 2011
New Revision: 123215

URL: http://llvm.org/viewvc/llvm-project?rev=123215&view=rev
Log:
Revert r123207: "Turn on memdep's verifyRemoved() in an attempt to smoke out the cause of our gcc bootstrap miscompare."

It didn't.

Modified:
    llvm/trunk/lib/Analysis/MemoryDependenceAnalysis.cpp

Modified: llvm/trunk/lib/Analysis/MemoryDependenceAnalysis.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/MemoryDependenceAnalysis.cpp?rev=123215&r1=123214&r2=123215&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/MemoryDependenceAnalysis.cpp (original)
+++ llvm/trunk/lib/Analysis/MemoryDependenceAnalysis.cpp Mon Jan 10 22:05:39 2011
@@ -1262,9 +1262,7 @@
   
   assert(!NonLocalDeps.count(RemInst) && "RemInst got reinserted?");
   AA->deleteValue(RemInst);
-#ifndef NDEBUG
-  verifyRemoved(RemInst);
-#endif
+  DEBUG(verifyRemoved(RemInst));
 }
 /// verifyRemoved - Verify that the specified instruction does not occur
 /// in our internal data structures.





More information about the llvm-commits mailing list