From 774f85465e72c95c39f71cb3eb9008f7e89c3673 Mon Sep 17 00:00:00 2001 From: Jim Laskey Date: Fri, 13 Oct 2006 13:01:34 +0000 Subject: [PATCH] Clean up dump. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30926 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/MachineDebugInfo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/CodeGen/MachineDebugInfo.cpp b/lib/CodeGen/MachineDebugInfo.cpp index cab58218ba7..c87928f44a4 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"; } -- 2.11.0