[llvm-commits] CVS: llvm/include/llvm/Analysis/DSNode.h
Chris Lattner
lattner at cs.uiuc.edu
Fri Nov 8 18:50:05 PST 2002
Changes in directory llvm/include/llvm/Analysis:
DSNode.h updated: 1.12 -> 1.13
---
Log message:
Fix release build
---
Diffs of the changes:
Index: llvm/include/llvm/Analysis/DSNode.h
diff -u llvm/include/llvm/Analysis/DSNode.h:1.12 llvm/include/llvm/Analysis/DSNode.h:1.13
--- llvm/include/llvm/Analysis/DSNode.h:1.12 Fri Nov 8 17:22:48 2002
+++ llvm/include/llvm/Analysis/DSNode.h Fri Nov 8 18:48:52 2002
@@ -72,10 +72,8 @@
DSNode(const DSNode &);
~DSNode() {
-#ifndef NDEBUG
- dropAllReferences(); // Only needed to satisfy assertion checks...
+ dropAllReferences();
assert(Referrers.empty() && "Referrers to dead node exist!");
-#endif
}
// Iterator for graph interface...
More information about the llvm-commits
mailing list