Clean up dump.

llvm-svn: 30926
This commit is contained in:
Jim Laskey 2006-10-13 13:01:34 +00:00
parent 9476464f86
commit 20feec042a

View File

@ -1115,7 +1115,7 @@ void GlobalVariableDesc::dump() {
<< "DisplayName(\"" << getDisplayName() << "\"), " << "DisplayName(\"" << getDisplayName() << "\"), "
<< "File(" << getFile() << ")," << "File(" << getFile() << "),"
<< "Line(" << getLine() << ")," << "Line(" << getLine() << "),"
<< "Type(\"" << getType() << "\"), " << "Type(" << getType() << "), "
<< "IsStatic(" << (isStatic() ? "true" : "false") << "), " << "IsStatic(" << (isStatic() ? "true" : "false") << "), "
<< "IsDefinition(" << (isDefinition() ? "true" : "false") << "), " << "IsDefinition(" << (isDefinition() ? "true" : "false") << "), "
<< "Global(" << Global << ")\n"; << "Global(" << Global << ")\n";
@ -1168,7 +1168,7 @@ void SubprogramDesc::dump() {
<< "DisplayName(\"" << getDisplayName() << "\"), " << "DisplayName(\"" << getDisplayName() << "\"), "
<< "File(" << getFile() << ")," << "File(" << getFile() << "),"
<< "Line(" << getLine() << ")," << "Line(" << getLine() << "),"
<< "Type(\"" << getType() << "\"), " << "Type(" << getType() << "), "
<< "IsStatic(" << (isStatic() ? "true" : "false") << "), " << "IsStatic(" << (isStatic() ? "true" : "false") << "), "
<< "IsDefinition(" << (isDefinition() ? "true" : "false") << ")\n"; << "IsDefinition(" << (isDefinition() ? "true" : "false") << ")\n";
} }