diff options
author | Chris Lattner <sabre@nondot.org> | 2009-09-12 20:45:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-09-12 20:45:03 +0000 |
commit | 5090e6c4a76b7e6d0d510dab0595718d8bc76b8a (patch) | |
tree | 5e3b42c664b8a150f35e37046b229f18d6ce8d78 /llvm/lib/MC/MCInst.cpp | |
parent | 317220882350ee3bb8d3ad3d5cf25fd58ea5f9fd (diff) | |
download | bcm5719-llvm-5090e6c4a76b7e6d0d510dab0595718d8bc76b8a.tar.gz bcm5719-llvm-5090e6c4a76b7e6d0d510dab0595718d8bc76b8a.zip |
eliminate the "MBBLabel" MCOperand type, and just use a MCSymbol for
MBB labels like everything else.
llvm-svn: 81628
Diffstat (limited to 'llvm/lib/MC/MCInst.cpp')
-rw-r--r-- | llvm/lib/MC/MCInst.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/MC/MCInst.cpp b/llvm/lib/MC/MCInst.cpp index f19056bc9ad..d05031870ad 100644 --- a/llvm/lib/MC/MCInst.cpp +++ b/llvm/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); |