forked from OSchip/llvm-project
Update test case multidim_indirect_access.ll
This test was written to check the workings of IndependentBlocks on arrays which doesn't do such transformations anymore. The test itself is still useful to check that the region is rejected as SCoP. llvm-svn: 245353
This commit is contained in:
parent
06abbceebc
commit
d568a3e20d
|
@ -1,17 +1,17 @@
|
||||||
; RUN: opt %loadPolly -polly-detect-unprofitable -polly-detect -analyze < %s | FileCheck %s --check-prefix=INDEPENDENT
|
; RUN: opt %loadPolly -polly-detect-unprofitable -polly-detect -analyze < %s | FileCheck %s
|
||||||
; RUN: opt %loadPolly -polly-detect-unprofitable -polly-detect -analyze < %s | FileCheck %s --check-prefix=NON_INDEPENDENT
|
|
||||||
;
|
;
|
||||||
; With the IndependentBlocks and PollyPrepare passes this will __correctly__
|
; The outer loop of this function will correctly not be recognized with the
|
||||||
; not be recognized as a SCoP and the debug states:
|
; message:
|
||||||
;
|
;
|
||||||
; SCEV of PHI node refers to SSA names in region
|
; Non affine access function: (sext i32 %tmp to i64)
|
||||||
;
|
;
|
||||||
; Without IndependentBlocks and PollyPrepare the access A[x] is mistakenly
|
; The access A[x] might mistakenly be treated as a multidimensional access with
|
||||||
; treated as a multidimensional access with dimension size x. This test will
|
; dimension size x. This test will check that we correctly invalidate the
|
||||||
; check that we correctly invalidate the region and do not detect a outer SCoP.
|
; region and do not detect an outer SCoP.
|
||||||
;
|
;
|
||||||
; FIXME:
|
; FIXME:
|
||||||
; We should detect the inner region but the PHI node in the exit blocks that.
|
; We should detect the inner region but the PHI node in the exit blocks
|
||||||
|
; prohibits that.
|
||||||
;
|
;
|
||||||
; void f(int *A, long N) {
|
; void f(int *A, long N) {
|
||||||
; int j = 0;
|
; int j = 0;
|
||||||
|
@ -25,8 +25,7 @@
|
||||||
; }
|
; }
|
||||||
; }
|
; }
|
||||||
;
|
;
|
||||||
; INDEPENDENT-NOT: Valid
|
; CHECK-NOT: Valid Region for Scop: bb0 => bb13
|
||||||
; NON_INDEPENDENT-NOT: Valid
|
|
||||||
;
|
;
|
||||||
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue