Remove global debug output fns that have been superceded by a member func
authorChris Lattner <sabre@nondot.org>
Wed, 19 Sep 2001 14:08:53 +0000 (14:08 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 19 Sep 2001 14:08:53 +0000 (14:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@642 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Value.cpp

index b137c62dd735b76d96be5fec0a61d2f2358a5742..f42037da5e93f84b8c41d4ec53d54e9d57dc4db5 100644 (file)
@@ -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 << "<NULL value>" << endl;
-}
-
-void DebugValue(const Value &V) {
-  cerr << V << endl;
-}
-
 void Value::dump() const {
   DebugValue(*this);
 }