aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-08-22 22:54:10 +0000
committerChris Lattner <sabre@nondot.org>2002-08-22 22:54:10 +0000
commitd145c2172fc54160c5edf199a1a96fca492e19bc (patch)
tree996975aa1870cbaa0683f445947f03468ba744d9 /include
parent24ea74eb9a47b81c1557926acd83e0fbe6d7594e (diff)
downloadexternal_llvm-d145c2172fc54160c5edf199a1a96fca492e19bc.zip
external_llvm-d145c2172fc54160c5edf199a1a96fca492e19bc.tar.gz
external_llvm-d145c2172fc54160c5edf199a1a96fca492e19bc.tar.bz2
Load & Store Inst now no longer derive from MemAccessInst
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3486 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/InstVisitor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/InstVisitor.h b/include/llvm/Support/InstVisitor.h
index 0d35aab..c48f155 100644
--- a/include/llvm/Support/InstVisitor.h
+++ b/include/llvm/Support/InstVisitor.h
@@ -164,8 +164,8 @@ struct InstVisitor {
RetTy visitMallocInst(MallocInst &I) { DELEGATE(AllocationInst);}
RetTy visitAllocaInst(AllocaInst &I) { DELEGATE(AllocationInst);}
RetTy visitFreeInst(FreeInst &I) { DELEGATE(Instruction); }
- RetTy visitLoadInst(LoadInst &I) { DELEGATE(MemAccessInst); }
- RetTy visitStoreInst(StoreInst &I) { DELEGATE(MemAccessInst); }
+ RetTy visitLoadInst(LoadInst &I) { DELEGATE(Instruction); }
+ RetTy visitStoreInst(StoreInst &I) { DELEGATE(Instruction); }
RetTy visitGetElementPtrInst(GetElementPtrInst &I){ DELEGATE(MemAccessInst); }
RetTy visitPHINode(PHINode &I) { DELEGATE(Instruction); }
RetTy visitCastInst(CastInst &I) { DELEGATE(Instruction); }