diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-10-13 13:01:34 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-10-13 13:01:34 +0000 |
commit | 13d3373e72bf56111cae01ef90c6d372c36cc9cf (patch) | |
tree | dcb4b81972ed063aca727b2b9832c08bbf49d88d /llvm/lib/CodeGen/MachineDebugInfo.cpp | |
parent | 5af1cbc5cf32b8ddec9033bf81fb1663dcd0346c (diff) | |
download | bcm5719-llvm-13d3373e72bf56111cae01ef90c6d372c36cc9cf.tar.gz bcm5719-llvm-13d3373e72bf56111cae01ef90c6d372c36cc9cf.zip |
Clean up dump.
llvm-svn: 30926
Diffstat (limited to 'llvm/lib/CodeGen/MachineDebugInfo.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineDebugInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineDebugInfo.cpp b/llvm/lib/CodeGen/MachineDebugInfo.cpp index cab58218ba7..c87928f44a4 100644 --- a/llvm/lib/CodeGen/MachineDebugInfo.cpp +++ b/llvm/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"; } |