summaryrefslogtreecommitdiffstats
path: root/lib/VMCore/Value.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-09-19 14:09:25 +0000
committerChris Lattner <sabre@nondot.org>2001-09-19 14:09:25 +0000
commitc04bf0724af43f0a8f9142632634dd3160a7a52f (patch)
tree80ad7dd981f8ff66a2bc12262d296a21f8ad6d60 /lib/VMCore/Value.cpp
parent45f598806bc84c4cc5e9e12457610dffb13638d4 (diff)
downloadexternal_llvm-c04bf0724af43f0a8f9142632634dd3160a7a52f.zip
external_llvm-c04bf0724af43f0a8f9142632634dd3160a7a52f.tar.gz
external_llvm-c04bf0724af43f0a8f9142632634dd3160a7a52f.tar.bz2
Okay, make the member function work.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@643 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Value.cpp')
-rw-r--r--lib/VMCore/Value.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp
index f42037d..bef0d44 100644
--- a/lib/VMCore/Value.cpp
+++ b/lib/VMCore/Value.cpp
@@ -85,7 +85,7 @@ User *Value::use_remove(use_iterator &I) {
#ifndef NDEBUG // Only in -g mode...
void Value::dump() const {
- DebugValue(*this);
+ cerr << this;
}
#endif