[llvm-commits] CVS: llvm/lib/CodeGen/MachineDebugInfo.cpp

Jim Laskey jlaskey at apple.com
Fri Oct 13 06:01:48 PDT 2006



Changes in directory llvm/lib/CodeGen:

MachineDebugInfo.cpp updated: 1.47 -> 1.48
---
Log message:

Clean up dump.

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

 MachineDebugInfo.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/CodeGen/MachineDebugInfo.cpp
diff -u llvm/lib/CodeGen/MachineDebugInfo.cpp:1.47 llvm/lib/CodeGen/MachineDebugInfo.cpp:1.48
--- llvm/lib/CodeGen/MachineDebugInfo.cpp:1.47	Mon Aug 21 16:20:18 2006
+++ llvm/lib/CodeGen/MachineDebugInfo.cpp	Fri Oct 13 08:01:34 2006
@@ -1115,7 +1115,7 @@
             << "DisplayName(\"" << getDisplayName() << "\"), "
             << "File(" << getFile() << "),"
             << "Line(" << getLine() << "),"
-            << "Type(\"" << getType() << "\"), "
+            << "Type(" << getType() << "), "
             << "IsStatic(" << (isStatic() ? "true" : "false") << "), "
             << "IsDefinition(" << (isDefinition() ? "true" : "false") << "), "
             << "Global(" << Global << ")\n";
@@ -1168,7 +1168,7 @@
             << "DisplayName(\"" << getDisplayName() << "\"), "
             << "File(" << getFile() << "),"
             << "Line(" << getLine() << "),"
-            << "Type(\"" << getType() << "\"), "
+            << "Type(" << getType() << "), "
             << "IsStatic(" << (isStatic() ? "true" : "false") << "), "
             << "IsDefinition(" << (isDefinition() ? "true" : "false") << ")\n";
 }






More information about the llvm-commits mailing list