diff options
author | Dan Gohman <gohman@apple.com> | 2010-11-08 16:11:19 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-11-08 16:11:19 +0000 |
commit | 0b56778d65717534b118742d56deb67306b52b9d (patch) | |
tree | 73638afc61d9f45f7911e2e2ac7c89a57c4f7077 /llvm/lib/Analysis/AliasAnalysis.cpp | |
parent | 86449d705aa8912a340950686fd00997e971c991 (diff) | |
download | bcm5719-llvm-0b56778d65717534b118742d56deb67306b52b9d.tar.gz bcm5719-llvm-0b56778d65717534b118742d56deb67306b52b9d.zip |
Delete getIntrinsicModRefBehavior. Clients can just use the normal
getModRefBehavior now, since it now understands intrinsics as well
as normal functions.
llvm-svn: 118411
Diffstat (limited to 'llvm/lib/Analysis/AliasAnalysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/AliasAnalysis.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/Analysis/AliasAnalysis.cpp b/llvm/lib/Analysis/AliasAnalysis.cpp index 912923be8eb..472d57ab402 100644 --- a/llvm/lib/Analysis/AliasAnalysis.cpp +++ b/llvm/lib/Analysis/AliasAnalysis.cpp @@ -249,13 +249,6 @@ AliasAnalysis::getModRefInfo(const VAArgInst *V, const Location &Loc) { return ModRef; } -AliasAnalysis::ModRefBehavior -AliasAnalysis::getIntrinsicModRefBehavior(unsigned iid) { -#define GET_INTRINSIC_MODREF_BEHAVIOR -#include "llvm/Intrinsics.gen" -#undef GET_INTRINSIC_MODREF_BEHAVIOR -} - // AliasAnalysis destructor: DO NOT move this to the header file for // AliasAnalysis or else clients of the AliasAnalysis class may not depend on // the AliasAnalysis.o file in the current .a file, causing alias analysis |