diff options
author | Dan Gohman <gohman@apple.com> | 2010-10-19 23:09:08 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-10-19 23:09:08 +0000 |
commit | db4708cf86cece22539ff022cc0601612dd02ead (patch) | |
tree | b702ba414b0b7328ab7565966e3ac2e2a8eb4497 /include/llvm/Analysis/AliasAnalysis.h | |
parent | 3da848bbda62b25c12335998aaa44ab361f0bf15 (diff) |
Move NoAA out of BasicAliasAnalysis.cpp into its own file, now that
it doesn't have a special relationship with BasicAliasAnalysis
anymore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116876 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/AliasAnalysis.h')
-rw-r--r-- | include/llvm/Analysis/AliasAnalysis.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/Analysis/AliasAnalysis.h b/include/llvm/Analysis/AliasAnalysis.h index 8fd6d2fc2c..2bd3f4c6b4 100644 --- a/include/llvm/Analysis/AliasAnalysis.h +++ b/include/llvm/Analysis/AliasAnalysis.h @@ -28,7 +28,6 @@ #define LLVM_ANALYSIS_ALIAS_ANALYSIS_H #include "llvm/Support/CallSite.h" -#include "llvm/System/IncludeFile.h" #include <vector> namespace llvm { @@ -422,11 +421,4 @@ bool isIdentifiedObject(const Value *V); } // End llvm namespace -// Because of the way .a files work, we must force the BasicAA implementation to -// be pulled in if the AliasAnalysis header is included. Otherwise we run -// the risk of AliasAnalysis being used, but the default implementation not -// being linked into the tool that uses it. -FORCE_DEFINING_FILE_TO_BE_LINKED(AliasAnalysis) -FORCE_DEFINING_FILE_TO_BE_LINKED(BasicAliasAnalysis) - #endif |