aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Bitcode/LLVMBitCodes.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2012-01-30 00:51:16 +0000
committerChris Lattner <sabre@nondot.org>2012-01-30 00:51:16 +0000
commitd408f06048797a43b17a7740acb766cc5f0adfbb (patch)
treedf4331dfc6e8c3f358203551696e3485a54431a6 /include/llvm/Bitcode/LLVMBitCodes.h
parentf95b2dafc9a6ae88c6085aceeaf7a34af09df93b (diff)
downloadexternal_llvm-d408f06048797a43b17a7740acb766cc5f0adfbb.zip
external_llvm-d408f06048797a43b17a7740acb766cc5f0adfbb.tar.gz
external_llvm-d408f06048797a43b17a7740acb766cc5f0adfbb.tar.bz2
Add bitcode reader and writer support for ConstantDataAggregate, which
should be feature complete now. Lets see if it works. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149215 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bitcode/LLVMBitCodes.h')
-rw-r--r--include/llvm/Bitcode/LLVMBitCodes.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Bitcode/LLVMBitCodes.h b/include/llvm/Bitcode/LLVMBitCodes.h
index 0b65145..930cb22 100644
--- a/include/llvm/Bitcode/LLVMBitCodes.h
+++ b/include/llvm/Bitcode/LLVMBitCodes.h
@@ -164,7 +164,8 @@ namespace bitc {
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_BLOCKADDRESS = 21 // CST_CODE_BLOCKADDRESS [fnty, fnval, bb#]
+ CST_CODE_BLOCKADDRESS = 21, // CST_CODE_BLOCKADDRESS [fnty, fnval, bb#]
+ CST_CODE_DATA = 22 // DATA: [n x elements]
};
/// CastOpcodes - These are values used in the bitcode files to encode which