mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Print the name last.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159879 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
70cfaa3464
commit
ee17cee77c
@ -1081,12 +1081,7 @@ void DICompositeType::printInternal(raw_ostream &OS) const {
|
||||
}
|
||||
|
||||
void DISubprogram::printInternal(raw_ostream &OS) const {
|
||||
StringRef Res = getName();
|
||||
if (!Res.empty())
|
||||
OS << " [" << Res << ']';
|
||||
|
||||
// TODO : Print context
|
||||
|
||||
OS << " [line " << getLineNumber() << ']';
|
||||
|
||||
if (isLocalToUnit())
|
||||
@ -1097,6 +1092,10 @@ void DISubprogram::printInternal(raw_ostream &OS) const {
|
||||
|
||||
if (getScopeLineNumber() != getLineNumber())
|
||||
OS << " [scope " << getScopeLineNumber() << "]";
|
||||
|
||||
StringRef Res = getName();
|
||||
if (!Res.empty())
|
||||
OS << " [" << Res << ']';
|
||||
}
|
||||
|
||||
void DIGlobalVariable::printInternal(raw_ostream &OS) const {
|
||||
|
Loading…
x
Reference in New Issue
Block a user