diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2005-06-18 18:31:30 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2005-06-18 18:31:30 +0000 |
commit | f5428213853bae45247fe6da711ff20954d73dbd (patch) | |
tree | 5747110c1c0c85ff2590290fc8db0cb8d2d3e187 /include/llvm/Support/InstVisitor.h | |
parent | cc494e8312c8e654be348d0f1dc0b0d73b87cb49 (diff) |
header file changes for varargs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22253 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/InstVisitor.h')
-rw-r--r-- | include/llvm/Support/InstVisitor.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/Support/InstVisitor.h b/include/llvm/Support/InstVisitor.h index 38cd74ab87..a4b1f8b5ee 100644 --- a/include/llvm/Support/InstVisitor.h +++ b/include/llvm/Support/InstVisitor.h @@ -174,7 +174,6 @@ public: RetTy visitSelectInst(SelectInst &I) { DELEGATE(Instruction); } RetTy visitCallInst(CallInst &I) { DELEGATE(Instruction); } RetTy visitShiftInst(ShiftInst &I) { DELEGATE(Instruction); } - RetTy visitVANextInst(VANextInst &I) { DELEGATE(Instruction); } RetTy visitVAArgInst(VAArgInst &I) { DELEGATE(Instruction); } // Next level propagators... if the user does not overload a specific |