Use WriteAsOperand instead of manually decorating the name for this

debug output. This improves the printing of anonymous values.

llvm-svn: 66561
This commit is contained in:
Dan Gohman 2009-03-10 18:47:59 +00:00
parent 65b2c4c381
commit 79fc0e9250
1 changed files with 8 additions and 11 deletions

View File

@ -77,20 +77,17 @@ void PassManagerPrettyStackEntry::print(raw_ostream &OS) const {
return;
}
std::string Name = V->getNameStr();
if (Name.empty())
Name = "<anonymous>";
else if (isa<GlobalValue>(V))
Name = "@" + Name;
else
Name = "%" + Name;
OS << " on ";
if (isa<Function>(V))
OS << " on function '" << Name << "'\n";
OS << "function";
else if (isa<BasicBlock>(V))
OS << " on basic block '" << Name << "'\n";
OS << "basic block";
else
OS << " on value '" << Name << "'\n";
OS << "value";
OS << " '";
WriteAsOperand(OS, V, /*PrintTy=*/false, M);
OS << "'\n";
}