diff options
author | Robert Bocchino <bocchino@illinois.edu> | 2006-01-17 20:05:59 +0000 |
---|---|---|
committer | Robert Bocchino <bocchino@illinois.edu> | 2006-01-17 20:05:59 +0000 |
commit | f999344fa74199f5acefbc492af2b60e67d0ba24 (patch) | |
tree | f03e4ad4f6fb18eac471ec62424f89299ba6fc85 /include/llvm/Instruction.def | |
parent | 433f8acefb78f1c8a2cf79c12b101ce7c4b20202 (diff) | |
download | external_llvm-f999344fa74199f5acefbc492af2b60e67d0ba24.zip external_llvm-f999344fa74199f5acefbc492af2b60e67d0ba24.tar.gz external_llvm-f999344fa74199f5acefbc492af2b60e67d0ba24.tar.bz2 |
Instruction and constant expression definitions for the insertelement
operation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25402 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Instruction.def')
-rw-r--r-- | include/llvm/Instruction.def | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Instruction.def b/include/llvm/Instruction.def index 3c22a9b..ca20eb1 100644 --- a/include/llvm/Instruction.def +++ b/include/llvm/Instruction.def @@ -136,7 +136,8 @@ HANDLE_OTHER_INST(35, UserOp1, Instruction) // May be used internally in a pass HANDLE_OTHER_INST(36, UserOp2, Instruction) HANDLE_OTHER_INST(37, VAArg , VAArgInst ) // vaarg instruction HANDLE_OTHER_INST(38, ExtractElement, ExtractElementInst) // extract packed element - LAST_OTHER_INST(38) +HANDLE_OTHER_INST(39, InsertElement, InsertElementInst) // insert element into packed vector + LAST_OTHER_INST(39) #undef FIRST_TERM_INST #undef HANDLE_TERM_INST |