[llvm-commits] CVS: llvm/include/llvm/Analysis/InstForest.h
Chris Lattner
lattner at cs.uiuc.edu
Wed Jul 14 19:50:48 PDT 2004
Changes in directory llvm/include/llvm/Analysis:
InstForest.h updated: 1.24 -> 1.25
---
Log message:
Fix for PR341: http://llvm.cs.uiuc.edu/PR341
---
Diffs of the changes: (+1 -1)
Index: llvm/include/llvm/Analysis/InstForest.h
diff -u llvm/include/llvm/Analysis/InstForest.h:1.24 llvm/include/llvm/Analysis/InstForest.h:1.25
--- llvm/include/llvm/Analysis/InstForest.h:1.24 Sat Nov 29 13:55:12 2003
+++ llvm/include/llvm/Analysis/InstForest.h Wed Jul 14 21:50:38 2004
@@ -123,7 +123,7 @@
default: o << "UNKNOWN NODE TYPE: " << getNodeType() << "\n"; abort();
}
- o << getValue();
+ o << *getValue();
if (!isa<Instruction>(getValue())) o << "\n";
for (unsigned i = 0; i < this->getNumChildren(); ++i)
More information about the llvm-commits
mailing list