From: Chris Lattner Date: Wed, 19 Sep 2001 14:09:25 +0000 (+0000) Subject: Okay, make the member function work. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c04bf0724af43f0a8f9142632634dd3160a7a52f;p=oota-llvm.git Okay, make the member function work. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@643 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp index f42037da5e9..bef0d4466ff 100644 --- a/lib/VMCore/Value.cpp +++ b/lib/VMCore/Value.cpp @@ -85,7 +85,7 @@ User *Value::use_remove(use_iterator &I) { #ifndef NDEBUG // Only in -g mode... void Value::dump() const { - DebugValue(*this); + cerr << this; } #endif