aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorKarl Schimpf <kschimpf@google.com>2013-08-28 14:34:19 -0700
committerKarl Schimpf <kschimpf@google.com>2013-08-28 14:34:19 -0700
commit493d4ab9edba2be18c916d80aaa100a0e51e1f51 (patch)
tree0fe55c21475362e19e6aec0404633f26c89f314e /tools
parent117111856d5cca5a0286792180ad9e241ea4d701 (diff)
Handle pointer conversions for call instructions.
This also should complete the changes associated with removing pointer cast instructions from the PNaCl bitcode file. BUG= https://code.google.com/p/nativeclient/issues/detail?id=3544 R=dschuff@chromium.org, jvoung@chromium.org Review URL: https://codereview.chromium.org/23482002
Diffstat (limited to 'tools')
-rw-r--r--tools/pnacl-bcanalyzer/pnacl-bcanalyzer.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/pnacl-bcanalyzer/pnacl-bcanalyzer.cpp b/tools/pnacl-bcanalyzer/pnacl-bcanalyzer.cpp
index 2e4ff2d162..73b328f118 100644
--- a/tools/pnacl-bcanalyzer/pnacl-bcanalyzer.cpp
+++ b/tools/pnacl-bcanalyzer/pnacl-bcanalyzer.cpp
@@ -248,6 +248,7 @@ static const char *GetCodeName(unsigned CodeID, unsigned BlockID,
case naclbitc::FUNC_CODE_INST_VSELECT: return "INST_VSELECT";
case naclbitc::FUNC_CODE_DEBUG_LOC_AGAIN: return "DEBUG_LOC_AGAIN";
case naclbitc::FUNC_CODE_INST_CALL: return "INST_CALL";
+ case naclbitc::FUNC_CODE_INST_CALL_INDIRECT: return "INST_CALL_INDIRECT";
case naclbitc::FUNC_CODE_DEBUG_LOC: return "DEBUG_LOC";
case naclbitc::FUNC_CODE_INST_FORWARDTYPEREF: return "FORWARDTYPEREF";
}