From: Chris Lattner Date: Thu, 15 Jul 2004 02:50:38 +0000 (+0000) Subject: Fix for PR341 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=94009a595489386d027b2fee345e98ccafc7fbf5;p=oota-llvm.git Fix for PR341 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14846 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/InstForest.h b/include/llvm/Analysis/InstForest.h index e41bf8c3a93..dbeb32a6cbf 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(getValue())) o << "\n"; for (unsigned i = 0; i < this->getNumChildren(); ++i)