diff options
Diffstat (limited to 'lib/MC/MCInst.cpp')
-rw-r--r-- | lib/MC/MCInst.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/MC/MCInst.cpp b/lib/MC/MCInst.cpp index f19056bc9a..d05031870a 100644 --- a/lib/MC/MCInst.cpp +++ b/lib/MC/MCInst.cpp @@ -21,9 +21,6 @@ void MCOperand::print(raw_ostream &OS, const MCAsmInfo *MAI) const { OS << "Reg:" << getReg(); else if (isImm()) OS << "Imm:" << getImm(); - else if (isMBBLabel()) - OS << "MBB:(" << getMBBLabelFunction() << "," - << getMBBLabelBlock() << ")"; else if (isExpr()) { OS << "Expr:("; getExpr()->print(OS, MAI); |