aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-10-15 23:08:50 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-10-15 23:08:50 +0000
commit961ca77e5b813acaa773bed2c009057806d67ac4 (patch)
treea7b90cae801ebcdcd5a8ce91c57c4cf8cdfe52cd
parent4a8167fe5c6fcbc5d678522c0638eb21812c88df (diff)
Add a space between the type and name of value when printing error message
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17022 91177308-0d34-0410-b5e6-96231b3b80d8
-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 60be53db5b..782eb0756c 100644
--- a/lib/VMCore/Value.cpp
+++ b/lib/VMCore/Value.cpp
@@ -49,7 +49,7 @@ Value::~Value() {
// a <badref>
//
if (Uses.begin() != Uses.end()) {
- std::cerr << "While deleting: " << *Ty << "%" << Name << "\n";
+ std::cerr << "While deleting: " << *Ty << " %" << Name << "\n";
for (use_const_iterator I = Uses.begin(), E = Uses.end(); I != E; ++I)
std::cerr << "Use still stuck around after Def is destroyed:"
<< **I << "\n";