Mention if a block has its address taken in debug output.

llvm-svn: 85571
This commit is contained in:
Dan Gohman 2009-10-30 02:08:26 +00:00
parent 43c574068b
commit e0a8b8fc56
1 changed files with 1 additions and 0 deletions

View File

@ -185,6 +185,7 @@ void MachineBasicBlock::print(raw_ostream &OS) const {
<< ", LLVM BB @" << (const void*) LBB << ", ID#" << getNumber();
if (Alignment) OS << ", Alignment " << Alignment;
if (isLandingPad()) OS << ", EH LANDING PAD";
if (hasAddressTaken()) OS << ", ADDRESS TAKEN";
OS << ":\n";
const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();