diff options
author | Hongbin Zheng <etherzhhb@gmail.com> | 2016-03-03 08:15:33 +0000 |
---|---|---|
committer | Hongbin Zheng <etherzhhb@gmail.com> | 2016-03-03 08:15:33 +0000 |
commit | 2a798853f86061ee34b3fa953560955164e370d3 (patch) | |
tree | 8b58acb4caff8f85a5eb2923db133fb1e0d3991a /polly/lib/CodeGen/IslAst.cpp | |
parent | 4cfe572932ddb35dc91d4c241e41205543479b17 (diff) | |
download | bcm5719-llvm-2a798853f86061ee34b3fa953560955164e370d3.tar.gz bcm5719-llvm-2a798853f86061ee34b3fa953560955164e370d3.zip |
Allow the client of DependenceInfo to obtain dependences at different granularities.
llvm-svn: 262591
Diffstat (limited to 'polly/lib/CodeGen/IslAst.cpp')
-rw-r--r-- | polly/lib/CodeGen/IslAst.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/polly/lib/CodeGen/IslAst.cpp b/polly/lib/CodeGen/IslAst.cpp index 1c058abce14..8f266b50968 100644 --- a/polly/lib/CodeGen/IslAst.cpp +++ b/polly/lib/CodeGen/IslAst.cpp @@ -466,7 +466,8 @@ bool IslAstInfo::runOnScop(Scop &Scop) { S = &Scop; - const Dependences &D = getAnalysis<DependenceInfo>().getDependences(); + const Dependences &D = + getAnalysis<DependenceInfo>().getDependences(Dependences::AL_Statement); Ast = IslAst::create(&Scop, D); |