From b6a2fc080f47eabdcaabf0101e9ca7c95e9d8bdc Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 12 Sep 2009 20:45:03 +0000 Subject: eliminate the "MBBLabel" MCOperand type, and just use a MCSymbol for MBB labels like everything else. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81628 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/MC/MCInst.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'lib/MC/MCInst.cpp') 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); -- cgit v1.2.3-18-g5258