commit | 27ff6b5e2bc038b1013b5c93e5c2da0144341740 | [log] [tgz] |
---|---|---|
author | Owen Anderson <resistor@mac.com> | Thu Jan 19 19:32:20 2012 +0000 |
committer | Owen Anderson <resistor@mac.com> | Thu Jan 19 19:32:20 2012 +0000 |
tree | 6f200b8d54cbe0f2701a0d1caf629ca8defaef81 | |
parent | 7b672fe03b6f1734ac545e3aceb6d90bed3f0406 [diff] [blame] |
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
diff --git a/lib/MC/MCInst.cpp b/lib/MC/MCInst.cpp index 4cb628b..7bbfd2e 100644 --- a/lib/MC/MCInst.cpp +++ b/lib/MC/MCInst.cpp
@@ -25,6 +25,8 @@ OS << "Imm:" << getImm(); else if (isExpr()) { OS << "Expr:(" << *getExpr() << ")"; + } else if (isInst()) { + OS << "Inst:(" << *getInst() << ")"; } else OS << "UNDEFINED"; OS << ">";