diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2008-03-01 21:47:06 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2008-03-01 21:47:06 +0000 |
commit | 33a834a6f64d6a640bde00619fc09ec12f2e1866 (patch) | |
tree | 4a716136cc63fe8d284eef21a23b0056e366e565 | |
parent | 1038222a9bda953e8c2d32bad468b72b6c90bde9 (diff) |
Also handle "getresult".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47797 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp b/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp index 354c352475..993f947f09 100644 --- a/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp +++ b/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp @@ -198,6 +198,7 @@ static const char *GetCodeName(unsigned CodeID, unsigned BlockID) { case bitc::FUNC_CODE_INST_CALL: return "INST_CALL"; case bitc::FUNC_CODE_INST_VAARG: return "INST_VAARG"; case bitc::FUNC_CODE_INST_STORE2: return "INST_STORE2"; + case bitc::FUNC_CODE_INST_GETRESULT: return "INST_GETRESULT"; } case bitc::TYPE_SYMTAB_BLOCK_ID: switch (CodeID) { |