1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

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 42e985b07a
commit 2a0216ff1c

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();