mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Support for the insertelement operation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25405 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b1f240b8ef
commit
4eb2e3a6f4
@ -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
|
||||
|
@ -389,6 +389,7 @@ public:
|
||||
|
||||
// These all get lowered before this pass.
|
||||
void visitExtractElement(ExtractElementInst &I) { assert(0 && "TODO"); }
|
||||
void visitInsertElement(InsertElementInst &I) { assert(0 && "TODO"); }
|
||||
void visitSwitch(SwitchInst &I) { assert(0 && "TODO"); }
|
||||
void visitInvoke(InvokeInst &I) { assert(0 && "TODO"); }
|
||||
void visitUnwind(UnwindInst &I) { assert(0 && "TODO"); }
|
||||
|
Loading…
x
Reference in New Issue
Block a user