diff options
author | Chris Lattner <sabre@nondot.org> | 2009-10-28 05:24:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-10-28 05:24:40 +0000 |
commit | 837e04a8bf13712a4a8ae279daab65a048b21f7d (patch) | |
tree | a37034f61cc5f272d5edfe552b096dccebedd2ce /include/llvm/Bitcode | |
parent | 0eeb913aa17a68b1f2963b02ca1d68f09dba0b78 (diff) | |
download | external_llvm-837e04a8bf13712a4a8ae279daab65a048b21f7d.zip external_llvm-837e04a8bf13712a4a8ae279daab65a048b21f7d.tar.gz external_llvm-837e04a8bf13712a4a8ae279daab65a048b21f7d.tar.bz2 |
bitcode writer support for blockaddress.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85376 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bitcode')
-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 abe9966..c037399 100644 --- a/include/llvm/Bitcode/LLVMBitCodes.h +++ b/include/llvm/Bitcode/LLVMBitCodes.h @@ -138,7 +138,8 @@ namespace bitc { CST_CODE_CE_CMP = 17, // CE_CMP: [opty, opval, opval, pred] CST_CODE_INLINEASM = 18, // INLINEASM: [sideeffect,asmstr,conststr] CST_CODE_CE_SHUFVEC_EX = 19, // SHUFVEC_EX: [opty, opval, opval, opval] - CST_CODE_CE_INBOUNDS_GEP = 20 // INBOUNDS_GEP: [n x operands] + CST_CODE_CE_INBOUNDS_GEP = 20,// INBOUNDS_GEP: [n x operands] + CST_CODE_BLOCKADDRESS = 21 // CST_CODE_BLOCKADDRESS [fnty, fnval, bb#] }; /// CastOpcodes - These are values used in the bitcode files to encode which |