From: Chris Lattner Date: Fri, 12 Apr 2002 18:19:45 +0000 (+0000) Subject: Fix pure virtual function called exception! X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e7eaf17158a0c752b8826066996de71030818d67;p=oota-llvm.git Fix pure virtual function called exception! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2229 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp index 7f28eb9d287..1309c566ad8 100644 --- a/lib/VMCore/Value.cpp +++ b/lib/VMCore/Value.cpp @@ -33,8 +33,7 @@ Value::~Value() { // a // if (Uses.begin() != Uses.end()) { - std::cerr << "While deleting: "; - dump(); + std::cerr << "While deleting: " << Ty << "%" << Name << "\n"; for (use_const_iterator I = Uses.begin(); I != Uses.end(); ++I) { std::cerr << "Use still stuck around after Def is destroyed:"; (*I)->dump();