projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
27cd2ca
)
Remove global debug output fns that have been superceded by a member func
author
Chris Lattner
<sabre@nondot.org>
Wed, 19 Sep 2001 14:08:53 +0000
(14:08 +0000)
committer
Chris 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
patch
|
blob
|
history
diff --git
a/lib/VMCore/Value.cpp
b/lib/VMCore/Value.cpp
index b137c62dd735b76d96be5fec0a61d2f2358a5742..f42037da5e93f84b8c41d4ec53d54e9d57dc4db5 100644
(file)
--- 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 << "<NULL value>" << endl;
-}
-
-void DebugValue(const Value &V) {
- cerr << V << endl;
-}
-
void Value::dump() const {
DebugValue(*this);
}