aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-09-10 15:35:23 +0000
committerChris Lattner <sabre@nondot.org>2002-09-10 15:35:23 +0000
commita690c590dc064db78675753aa7d44c9b09798ca5 (patch)
tree70020433a107aac0472028e64cb5f97b03b09249 /include
parent2e9fe0ad0903b628f85325c1ae5907ecbf15c168 (diff)
downloadexternal_llvm-a690c590dc064db78675753aa7d44c9b09798ca5.zip
external_llvm-a690c590dc064db78675753aa7d44c9b09798ca5.tar.gz
external_llvm-a690c590dc064db78675753aa7d44c9b09798ca5.tar.bz2
Eliminate the GenericBinaryInst class
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3649 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/InstVisitor.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/Support/InstVisitor.h b/include/llvm/Support/InstVisitor.h
index a41a514..6ad636f 100644
--- a/include/llvm/Support/InstVisitor.h
+++ b/include/llvm/Support/InstVisitor.h
@@ -159,7 +159,6 @@ struct InstVisitor {
RetTy visitBranchInst(BranchInst &I) { DELEGATE(TerminatorInst);}
RetTy visitSwitchInst(SwitchInst &I) { DELEGATE(TerminatorInst);}
RetTy visitInvokeInst(InvokeInst &I) { DELEGATE(TerminatorInst);}
- RetTy visitGenericBinaryInst(GenericBinaryInst &I){ DELEGATE(BinaryOperator);}
RetTy visitSetCondInst(SetCondInst &I) { DELEGATE(BinaryOperator);}
RetTy visitMallocInst(MallocInst &I) { DELEGATE(AllocationInst);}
RetTy visitAllocaInst(AllocaInst &I) { DELEGATE(AllocationInst);}