summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-05-06 01:50:11 +0000
committerChris Lattner <sabre@nondot.org>2007-05-06 01:50:11 +0000
commitc5ff2cc3de0cdc727c55a48eb9fc9de031ad211c (patch)
treeddc6548fa5cbb1d6d45686aa92c1306b41547fbe /include
parent048d0bd4c0e92db88a508b5fc107136a1262b6bc (diff)
downloadllvm-c5ff2cc3de0cdc727c55a48eb9fc9de031ad211c.tar.gz
llvm-c5ff2cc3de0cdc727c55a48eb9fc9de031ad211c.tar.bz2
llvm-c5ff2cc3de0cdc727c55a48eb9fc9de031ad211c.tar.xz
add inline asm code
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36826 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-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 5c58614011..d848799530 100644
--- a/include/llvm/Bitcode/LLVMBitCodes.h
+++ b/include/llvm/Bitcode/LLVMBitCodes.h
@@ -115,7 +115,8 @@ namespace bitc {
CST_CODE_CE_EXTRACTELT = 14, // CE_EXTRACTELT: [opty, opval, opval]
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_CE_CMP = 17, // CE_CMP: [opty, opval, opval, pred]
+ CST_CODE_INLINEASM = 18 // INLINEASM: [sideeffect,asmstr,conststr]
};
/// CastOpcodes - These are values used in the bitcode files to encode which