diff options
author | Johannes Doerfert <doerfert@cs.uni-saarland.de> | 2015-02-11 17:25:09 +0000 |
---|---|---|
committer | Johannes Doerfert <doerfert@cs.uni-saarland.de> | 2015-02-11 17:25:09 +0000 |
commit | 7ceb040213566037b24951b8196993fe58e25294 (patch) | |
tree | 6f4bb0f45d8da9b4b08db83e676853c84f29bbf2 /polly/test/Isl/CodeGen/single_loop_int_max_iterations.ll | |
parent | de5b7b180ac147a6aced35ce616c5dcc2f1e5b20 (diff) | |
download | bcm5719-llvm-7ceb040213566037b24951b8196993fe58e25294.tar.gz bcm5719-llvm-7ceb040213566037b24951b8196993fe58e25294.zip |
Add early exits for SCoPs we did not optimize
This allows us to skip ast and code generation if we did not optimize
a SCoP and will not generate parallel or alias annotations. The
initial heuristic to exit is simple but allows improvements later on.
All failing test cases have been modified to disable early exit, thus
to keep their coverage.
Differential Revision: http://reviews.llvm.org/D7254
llvm-svn: 228851
Diffstat (limited to 'polly/test/Isl/CodeGen/single_loop_int_max_iterations.ll')
-rw-r--r-- | polly/test/Isl/CodeGen/single_loop_int_max_iterations.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/test/Isl/CodeGen/single_loop_int_max_iterations.ll b/polly/test/Isl/CodeGen/single_loop_int_max_iterations.ll index c76c18a2f4c..9431c3a3c1b 100644 --- a/polly/test/Isl/CodeGen/single_loop_int_max_iterations.ll +++ b/polly/test/Isl/CodeGen/single_loop_int_max_iterations.ll @@ -1,4 +1,4 @@ -; RUN: opt %loadPolly -polly-ast -analyze -S < %s | FileCheck %s +; RUN: opt %loadPolly -polly-no-early-exit -polly-ast -analyze -S < %s | FileCheck %s ;#define N 20 ;#include "limits.h" |