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
This commit is contained in:
Chris Lattner 2001-09-19 14:08:53 +00:00
parent 27cd2caca5
commit 45f598806b

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