diff options
-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) |