diff options
author | Chris Lattner <sabre@nondot.org> | 2004-07-15 02:50:38 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-07-15 02:50:38 +0000 |
commit | 94009a595489386d027b2fee345e98ccafc7fbf5 (patch) | |
tree | c2974dd7cdcccfac8959f1a95230f95f6b9ff675 | |
parent | f51c7f56caea364e4ad7adecff0413dc74686bb3 (diff) |
Fix for PR341
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14846 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/InstForest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/InstForest.h b/include/llvm/Analysis/InstForest.h index e41bf8c3a9..dbeb32a6cb 100644 --- a/include/llvm/Analysis/InstForest.h +++ b/include/llvm/Analysis/InstForest.h @@ -123,7 +123,7 @@ public: 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) |