forked from OSchip/llvm-project
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
This commit is contained in:
parent
31eaca5513
commit
a7fea8386c
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue