IR support for extractvalue and insertvalue instructions. Also, begin
[oota-llvm.git] / include / llvm / Support / InstVisitor.h
index 6e9a5c66ab2e7fa80d51d02f9fbe08a23619d007..9606187508afa6ec7c1861979e6130e503e77d57 100644 (file)
@@ -197,6 +197,8 @@ public:
   RetTy visitInsertElementInst(InsertElementInst &I) { DELEGATE(Instruction); }
   RetTy visitShuffleVectorInst(ShuffleVectorInst &I) { DELEGATE(Instruction); }
   RetTy visitGetResultInst(GetResultInst &I) { DELEGATE(Instruction); }
+  RetTy visitExtractValueInst(ExtractValueInst &I)  { DELEGATE(Instruction);}
+  RetTy visitInsertValueInst(InsertValueInst &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