From 94009a595489386d027b2fee345e98ccafc7fbf5 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 15 Jul 2004 02:50:38 +0000 Subject: [PATCH] Fix for PR341 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14846 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/InstForest.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.34.1