diff options
author | Robert Bocchino <bocchino@illinois.edu> | 2006-01-17 20:06:42 +0000 |
---|---|---|
committer | Robert Bocchino <bocchino@illinois.edu> | 2006-01-17 20:06:42 +0000 |
commit | 4eb2e3a6f45e6f0a4a8f0002918f8d14c34169c1 (patch) | |
tree | 0b9a7138b8aba6fbf6e7052f59569db5e4f3a77b /include/llvm/Support | |
parent | b1f240b8efb6eb54cfa9f003e11a25d0a3eddb75 (diff) | |
download | external_llvm-4eb2e3a6f45e6f0a4a8f0002918f8d14c34169c1.zip external_llvm-4eb2e3a6f45e6f0a4a8f0002918f8d14c34169c1.tar.gz external_llvm-4eb2e3a6f45e6f0a4a8f0002918f8d14c34169c1.tar.bz2 |
Support for the insertelement operation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25405 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r-- | include/llvm/Support/InstVisitor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Support/InstVisitor.h b/include/llvm/Support/InstVisitor.h index 9f888cb..e48b3ff 100644 --- a/include/llvm/Support/InstVisitor.h +++ b/include/llvm/Support/InstVisitor.h @@ -176,6 +176,7 @@ public: RetTy visitShiftInst(ShiftInst &I) { DELEGATE(Instruction); } RetTy visitVAArgInst(VAArgInst &I) { DELEGATE(Instruction); } RetTy visitExtractElementInst(ExtractElementInst &I) { DELEGATE(Instruction); } + RetTy visitInsertElementInst(InsertElementInst &I) { DELEGATE(Instruction); } // Next level propagators... if the user does not overload a specific // instruction type, they can overload one of these to get the whole class |