From 27ff6b5e2bc038b1013b5c93e5c2da0144341740 Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Thu, 19 Jan 2012 19:32:20 +0000 Subject: [PATCH] Add a dump() implementation for sub-instruction MCOperands. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148493 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/MC/MCInst.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/MC/MCInst.cpp b/lib/MC/MCInst.cpp index 4cb628b395c..7bbfd2efa13 100644 --- a/lib/MC/MCInst.cpp +++ b/lib/MC/MCInst.cpp @@ -25,6 +25,8 @@ void MCOperand::print(raw_ostream &OS, const MCAsmInfo *MAI) const { OS << "Imm:" << getImm(); else if (isExpr()) { OS << "Expr:(" << *getExpr() << ")"; + } else if (isInst()) { + OS << "Inst:(" << *getInst() << ")"; } else OS << "UNDEFINED"; OS << ">";