diff options
author | Devang Patel <dpatel@apple.com> | 2008-02-22 02:49:49 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-02-22 02:49:49 +0000 |
commit | 197be3de7f247e61c75d12dc1cb090c1c2c39f28 (patch) | |
tree | c271d5c13df7431a7e3bd9ffea3cba8203bf3cc6 /include/llvm/Bitcode/LLVMBitCodes.h | |
parent | 149a4e56fcd29c37c416e0ce4a5ebed7b514cbc6 (diff) | |
download | external_llvm-197be3de7f247e61c75d12dc1cb090c1c2c39f28.tar.gz external_llvm-197be3de7f247e61c75d12dc1cb090c1c2c39f28.tar.bz2 external_llvm-197be3de7f247e61c75d12dc1cb090c1c2c39f28.zip |
Read and write getresult.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47471 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bitcode/LLVMBitCodes.h')
-rw-r--r-- | include/llvm/Bitcode/LLVMBitCodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Bitcode/LLVMBitCodes.h b/include/llvm/Bitcode/LLVMBitCodes.h index 93a81dad72..5ef832e187 100644 --- a/include/llvm/Bitcode/LLVMBitCodes.h +++ b/include/llvm/Bitcode/LLVMBitCodes.h @@ -201,7 +201,8 @@ namespace bitc { // This store code encodes the pointer type, rather than the value type // this is so information only available in the pointer type (e.g. address // spaces) is retained. - FUNC_CODE_INST_STORE2 = 24 // STORE: [ptrty,ptr,val, align, vol] + FUNC_CODE_INST_STORE2 = 24, // STORE: [ptrty,ptr,val, align, vol] + FUNC_CODE_INST_GETRESULT = 25 // GETRESULT: [ty, opval, n] }; } // End bitc namespace } // End llvm namespace |