1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Remove global debug output fns that have been superceded by a member func

llvm-svn: 642
This commit is contained in:
Chris Lattner 2001-09-19 14:08:53 +00:00
parent 2ab05b6f57
commit 9aa7a88f0e

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