From: Chris Lattner Date: Wed, 19 Sep 2001 14:08:53 +0000 (+0000) Subject: Remove global debug output fns that have been superceded by a member func X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=45f598806bc84c4cc5e9e12457610dffb13638d4;p=oota-llvm.git Remove global debug output fns that have been superceded by a member func git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@642 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp index b137c62dd73..f42037da5e9 100644 --- a/lib/VMCore/Value.cpp +++ b/lib/VMCore/Value.cpp @@ -84,17 +84,6 @@ User *Value::use_remove(use_iterator &I) { } #ifndef NDEBUG // Only in -g mode... -void DebugValue(const Value *V) { - if (V) - cerr << *V << endl; - else - cerr << "" << endl; -} - -void DebugValue(const Value &V) { - cerr << V << endl; -} - void Value::dump() const { DebugValue(*this); }