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); }