diff options
| author | Tobias Grosser <tobias@grosser.es> | 2014-01-27 10:23:12 +0000 |
|---|---|---|
| committer | Tobias Grosser <tobias@grosser.es> | 2014-01-27 10:23:12 +0000 |
| commit | a7fea8386c90f4bfefa072e3b1e39c3692487c60 (patch) | |
| tree | baa979a9af5c866055ae14a1fed688f446355a25 | |
| parent | 31eaca5513e9b77069f1d8390a4aba8657da4246 (diff) | |
| download | bcm5719-llvm-a7fea8386c90f4bfefa072e3b1e39c3692487c60.tar.gz bcm5719-llvm-a7fea8386c90f4bfefa072e3b1e39c3692487c60.zip | |
Do not run -O3 to canonicalize test case
This is not only not necessary, but in case -03 changes this can actually
cause arbitrarily failing test cases such as, e.g., a recent change by Chandler
that caused -O3 to unroll the loop body, which made the loop we wanted to
detect disappear and consequently this test case fail.
llvm-svn: 200204
| -rw-r--r-- | polly/test/Cloog/CodeGen/simple_nonaffine_loop.ll | 2 | ||||
| -rw-r--r-- | polly/test/Isl/CodeGen/simple_nonaffine_loop.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/polly/test/Cloog/CodeGen/simple_nonaffine_loop.ll b/polly/test/Cloog/CodeGen/simple_nonaffine_loop.ll index 6fd688c8c0f..010da127c53 100644 --- a/polly/test/Cloog/CodeGen/simple_nonaffine_loop.ll +++ b/polly/test/Cloog/CodeGen/simple_nonaffine_loop.ll @@ -1,4 +1,4 @@ -; RUN: opt %loadPolly %defaultOpts -O3 -polly-cloog -polly-allow-nonaffine -analyze < %s | FileCheck %s +; RUN: opt %loadPolly -polly-cloog -polly-allow-nonaffine -analyze < %s | FileCheck %s ;#include <stdio.h> ;#include <stdlib.h> diff --git a/polly/test/Isl/CodeGen/simple_nonaffine_loop.ll b/polly/test/Isl/CodeGen/simple_nonaffine_loop.ll index a1fd0acc4ae..5f88cce88a6 100644 --- a/polly/test/Isl/CodeGen/simple_nonaffine_loop.ll +++ b/polly/test/Isl/CodeGen/simple_nonaffine_loop.ll @@ -1,4 +1,4 @@ -; RUN: opt %loadPolly %defaultOpts -O3 -polly-ast -polly-allow-nonaffine -analyze < %s | FileCheck %s +; RUN: opt %loadPolly -polly-ast -polly-allow-nonaffine -analyze < %s | FileCheck %s ;#include <stdio.h> ;#include <stdlib.h> |

