mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Use WriteAsOperand instead of manually decorating the name for this
debug output. This improves the printing of anonymous values. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66561 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1274ced8a3
commit
ac57b128c4
@ -77,20 +77,17 @@ void PassManagerPrettyStackEntry::print(raw_ostream &OS) const {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string Name = V->getNameStr();
|
OS << " on ";
|
||||||
if (Name.empty())
|
|
||||||
Name = "<anonymous>";
|
|
||||||
else if (isa<GlobalValue>(V))
|
|
||||||
Name = "@" + Name;
|
|
||||||
else
|
|
||||||
Name = "%" + Name;
|
|
||||||
|
|
||||||
if (isa<Function>(V))
|
if (isa<Function>(V))
|
||||||
OS << " on function '" << Name << "'\n";
|
OS << "function";
|
||||||
else if (isa<BasicBlock>(V))
|
else if (isa<BasicBlock>(V))
|
||||||
OS << " on basic block '" << Name << "'\n";
|
OS << "basic block";
|
||||||
else
|
else
|
||||||
OS << " on value '" << Name << "'\n";
|
OS << "value";
|
||||||
|
|
||||||
|
OS << " '";
|
||||||
|
WriteAsOperand(OS, V, /*PrintTy=*/false, M);
|
||||||
|
OS << "'\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user