summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-08-11 06:37:09 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-08-11 06:37:09 +0000
commit3c14ca47fc057c5999cd41ce2782e0ebaa2bcf7d (patch)
treee77a324585af330678555645cef5e8590e7df6d4 /tools
parentb3cb6967949493a2e1b10d015ac08b746736764e (diff)
downloadllvm-3c14ca47fc057c5999cd41ce2782e0ebaa2bcf7d.tar.gz
llvm-3c14ca47fc057c5999cd41ce2782e0ebaa2bcf7d.tar.bz2
llvm-3c14ca47fc057c5999cd41ce2782e0ebaa2bcf7d.tar.xz
llvm-mc: Add -show-inst-operands, for dumping the parsed instruction representation before matching.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110791 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/llvm-mc/llvm-mc.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/llvm-mc/llvm-mc.cpp b/tools/llvm-mc/llvm-mc.cpp
index 33531f18be..94b11ebe64 100644
--- a/tools/llvm-mc/llvm-mc.cpp
+++ b/tools/llvm-mc/llvm-mc.cpp
@@ -51,6 +51,10 @@ ShowEncoding("show-encoding", cl::desc("Show instruction encodings"));
static cl::opt<bool>
ShowInst("show-inst", cl::desc("Show internal instruction representation"));
+static cl::opt<bool>
+ShowInstOperands("show-inst-operands",
+ cl::desc("Show instructions operands as parsed"));
+
static cl::opt<unsigned>
OutputAsmVariant("output-asm-variant",
cl::desc("Syntax variant to use for output printing"));
@@ -320,6 +324,7 @@ static int AssembleInput(const char *ProgName) {
return 1;
}
+ Parser->setShowParsedOperands(ShowInstOperands);
Parser->setTargetParser(*TAP.get());
int Res = Parser->Run(NoInitialTextSection);