aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/MachineDebugInfo.cpp
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-10-13 13:01:34 +0000
committerJim Laskey <jlaskey@mac.com>2006-10-13 13:01:34 +0000
commit774f85465e72c95c39f71cb3eb9008f7e89c3673 (patch)
tree8961ca70a52e5abf8d9ff3d755ec01ac230179f3 /lib/CodeGen/MachineDebugInfo.cpp
parentefa3da5593117eab5209c9197cad5ca42213c12e (diff)
downloadexternal_llvm-774f85465e72c95c39f71cb3eb9008f7e89c3673.zip
external_llvm-774f85465e72c95c39f71cb3eb9008f7e89c3673.tar.gz
external_llvm-774f85465e72c95c39f71cb3eb9008f7e89c3673.tar.bz2
Clean up dump.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30926 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineDebugInfo.cpp')
-rw-r--r--lib/CodeGen/MachineDebugInfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/MachineDebugInfo.cpp b/lib/CodeGen/MachineDebugInfo.cpp
index cab5821..c87928f 100644
--- a/lib/CodeGen/MachineDebugInfo.cpp
+++ b/lib/CodeGen/MachineDebugInfo.cpp
@@ -1115,7 +1115,7 @@ void GlobalVariableDesc::dump() {
<< "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 @@ void SubprogramDesc::dump() {
<< "DisplayName(\"" << getDisplayName() << "\"), "
<< "File(" << getFile() << "),"
<< "Line(" << getLine() << "),"
- << "Type(\"" << getType() << "\"), "
+ << "Type(" << getType() << "), "
<< "IsStatic(" << (isStatic() ? "true" : "false") << "), "
<< "IsDefinition(" << (isDefinition() ? "true" : "false") << ")\n";
}