diff options
author | Dan Gohman <gohman@apple.com> | 2008-07-21 23:30:30 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-07-21 23:30:30 +0000 |
commit | ea1ace27c0f078b5cbf14652fbd59a536e022e20 (patch) | |
tree | 347875bd3dde0f305a3bec65efe7828875cc3eaf /include/llvm/Bitcode | |
parent | 4f574f5d0e013d93e80324968ea0489ab00414f8 (diff) | |
download | external_llvm-ea1ace27c0f078b5cbf14652fbd59a536e022e20.zip external_llvm-ea1ace27c0f078b5cbf14652fbd59a536e022e20.tar.gz external_llvm-ea1ace27c0f078b5cbf14652fbd59a536e022e20.tar.bz2 |
InsertValue and ExtractValue constant expressions are always
folded. Remove code that handled the case where they aren't
folded, and remove bitcode reader/writer support for them.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53887 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bitcode')
-rw-r--r-- | include/llvm/Bitcode/LLVMBitCodes.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/llvm/Bitcode/LLVMBitCodes.h b/include/llvm/Bitcode/LLVMBitCodes.h index da36048..ef7f870 100644 --- a/include/llvm/Bitcode/LLVMBitCodes.h +++ b/include/llvm/Bitcode/LLVMBitCodes.h @@ -125,9 +125,7 @@ namespace bitc { CST_CODE_CE_INSERTELT = 15, // CE_INSERTELT: [opval, opval, opval] CST_CODE_CE_SHUFFLEVEC = 16, // CE_SHUFFLEVEC: [opval, opval, opval] CST_CODE_CE_CMP = 17, // CE_CMP: [opty, opval, opval, pred] - CST_CODE_INLINEASM = 18, // INLINEASM: [sideeffect,asmstr,conststr] - CST_CODE_CE_EXTRACTVAL = 19, // CE_EXTRACTVAL: [n x operands] - CST_CODE_CE_INSERTVAL = 20 // CE_INSERTVAL: [n x operands] + CST_CODE_INLINEASM = 18 // INLINEASM: [sideeffect,asmstr,conststr] }; /// CastOpcodes - These are values used in the bitcode files to encode which |