diff options
| author | Johannes Doerfert <doerfert@cs.uni-saarland.de> | 2016-02-25 14:06:11 +0000 |
|---|---|---|
| committer | Johannes Doerfert <doerfert@cs.uni-saarland.de> | 2016-02-25 14:06:11 +0000 |
| commit | 9dd42ee7c18a5a13ea40ea31654d01ea26d8d014 (patch) | |
| tree | 82b51a41cda6c1a759011a21ec3f6a500f29d360 /polly/lib/Analysis/ScopDetection.cpp | |
| parent | 45ef10f1104c7bb04cc81b399996a400915af7a7 (diff) | |
| download | bcm5719-llvm-9dd42ee7c18a5a13ea40ea31654d01ea26d8d014.tar.gz bcm5719-llvm-9dd42ee7c18a5a13ea40ea31654d01ea26d8d014.zip | |
Try to build alias checks even when non-affine accesses are allowed
From now on we bail only if a non-trivial alias group contains a non-affine
access, not when we discover aliasing and non-affine accesses are allowed.
llvm-svn: 261863
Diffstat (limited to 'polly/lib/Analysis/ScopDetection.cpp')
| -rw-r--r-- | polly/lib/Analysis/ScopDetection.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/polly/lib/Analysis/ScopDetection.cpp b/polly/lib/Analysis/ScopDetection.cpp index c16d9fb20b2..d3ac0fc567b 100644 --- a/polly/lib/Analysis/ScopDetection.cpp +++ b/polly/lib/Analysis/ScopDetection.cpp @@ -232,12 +232,6 @@ ScopDetection::ScopDetection() : FunctionPass(ID) { PollyUseRuntimeAliasChecks = false; return; } - - if (AllowNonAffine) { - DEBUG(errs() << "WARNING: We disable runtime alias checks as non affine " - "accesses are enabled.\n"); - PollyUseRuntimeAliasChecks = false; - } } template <class RR, typename... Args> |

