summaryrefslogtreecommitdiff
path: root/lib/Analysis/MemoryDependenceAnalysis.cpp
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2011-01-11 04:05:39 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2011-01-11 04:05:39 +0000
commitf7624bc6dd57d5b4deea7c336c3e3aec67f38c9b (patch)
treeb2570a0692fa7f56a031e46d6b49822b49ff7997 /lib/Analysis/MemoryDependenceAnalysis.cpp
parent218dc3e2fe54c28b0292a3e89c5ed6563f62ac23 (diff)
downloadllvm-f7624bc6dd57d5b4deea7c336c3e3aec67f38c9b.tar.gz
llvm-f7624bc6dd57d5b4deea7c336c3e3aec67f38c9b.tar.bz2
llvm-f7624bc6dd57d5b4deea7c336c3e3aec67f38c9b.tar.xz
Revert r123207: "Turn on memdep's verifyRemoved() in an attempt to smoke out the cause of our gcc bootstrap miscompare."
It didn't. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123215 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/MemoryDependenceAnalysis.cpp')
-rw-r--r--lib/Analysis/MemoryDependenceAnalysis.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Analysis/MemoryDependenceAnalysis.cpp b/lib/Analysis/MemoryDependenceAnalysis.cpp
index c80099cc75..8ac0a374a6 100644
--- a/lib/Analysis/MemoryDependenceAnalysis.cpp
+++ b/lib/Analysis/MemoryDependenceAnalysis.cpp
@@ -1262,9 +1262,7 @@ void MemoryDependenceAnalysis::removeInstruction(Instruction *RemInst) {
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.