aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC/MCInst.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-09-12 20:45:03 +0000
committerChris Lattner <sabre@nondot.org>2009-09-12 20:45:03 +0000
commit34461fde24e25c4c789b719f16483367ef125e5c (patch)
tree1c32b7ff26477d32bff9f9ff6d722bacc3ed888d /lib/MC/MCInst.cpp
parent1efc2adff3c3193bf402c9167cc3b06ec582a875 (diff)
downloadexternal_llvm-34461fde24e25c4c789b719f16483367ef125e5c.zip
external_llvm-34461fde24e25c4c789b719f16483367ef125e5c.tar.gz
external_llvm-34461fde24e25c4c789b719f16483367ef125e5c.tar.bz2
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
Diffstat (limited to 'lib/MC/MCInst.cpp')
-rw-r--r--lib/MC/MCInst.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/MC/MCInst.cpp b/lib/MC/MCInst.cpp
index f19056b..d050318 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);