[llvm-commits] CVS: llvm/lib/VMCore/Value.cpp

Misha Brukman brukman at cs.uiuc.edu
Fri Oct 15 16:09:01 PDT 2004



Changes in directory llvm/lib/VMCore:

Value.cpp updated: 1.50 -> 1.51
---
Log message:

Add a space between the type and name of value when printing error message


---
Diffs of the changes:  (+1 -1)

Index: llvm/lib/VMCore/Value.cpp
diff -u llvm/lib/VMCore/Value.cpp:1.50 llvm/lib/VMCore/Value.cpp:1.51
--- llvm/lib/VMCore/Value.cpp:1.50	Wed Sep  1 17:55:37 2004
+++ llvm/lib/VMCore/Value.cpp	Fri Oct 15 18:08:50 2004
@@ -49,7 +49,7 @@
   // 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";






More information about the llvm-commits mailing list