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";
 }



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to