aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndreas Bolka <a@bolka.at>2009-07-01 21:45:23 +0000
committerAndreas Bolka <a@bolka.at>2009-07-01 21:45:23 +0000
commit8f9cd69edef54e3d1871bbed82d8d67ee93acc42 (patch)
tree245407d3ca8e06e3a4ff906851a7b2c94b9f7904 /include
parent72d5fbb927d7e97bf5e170f977914269f3c41760 (diff)
downloadexternal_llvm-8f9cd69edef54e3d1871bbed82d8d67ee93acc42.zip
external_llvm-8f9cd69edef54e3d1871bbed82d8d67ee93acc42.tar.gz
external_llvm-8f9cd69edef54e3d1871bbed82d8d67ee93acc42.tar.bz2
Use AA to check objects before LDA.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74647 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Analysis/LoopDependenceAnalysis.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/Analysis/LoopDependenceAnalysis.h b/include/llvm/Analysis/LoopDependenceAnalysis.h
index 044270d..67da2e7 100644
--- a/include/llvm/Analysis/LoopDependenceAnalysis.h
+++ b/include/llvm/Analysis/LoopDependenceAnalysis.h
@@ -26,12 +26,14 @@
namespace llvm {
+ class AliasAnalysis;
class AnalysisUsage;
class ScalarEvolution;
class Value;
class LoopDependenceAnalysis : public LoopPass {
Loop *L;
+ AliasAnalysis *AA;
ScalarEvolution *SE;
public: