Skip to content

Commit 758e06b

Browse files
committed
[polly][test] Fix after 7c3c981
1 parent c9992c9 commit 758e06b

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

polly/test/ScopInfo/licm_load.ll

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
; RUN: opt %loadPolly -basic-aa -loop-rotate -indvars -polly-prepare \
2-
; RUN: -polly-invariant-load-hoisting=true -polly-print-scops -disable-output < %s \
1+
; RUN: opt %loadNPMPolly -passes='loop(loop-rotate,indvars),polly-prepare,print<polly-function-scops>' -polly-invariant-load-hoisting=true -disable-output < %s 2>&1 \
32
; RUN: | FileCheck %s
4-
; RUN: opt %loadPolly -basic-aa -loop-rotate -indvars -licm -polly-prepare \
5-
; RUN: -polly-invariant-load-hoisting=true -polly-print-scops --disable-output< %s \
3+
; RUN: opt %loadNPMPolly -passes='loop-mssa(loop-rotate,indvars,licm),polly-prepare,print<polly-function-scops>' -polly-invariant-load-hoisting=true -disable-output < %s 2>&1 \
64
; RUN: | FileCheck %s
75
;
86
; void foo(int n, float A[static const restrict n],

polly/test/ScopInfo/licm_potential_store.ll

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
; RUN: opt %loadPolly -basic-aa -sroa -instcombine -simplifycfg -tailcallopt \
2-
; RUN: -simplifycfg -reassociate -loop-rotate -instcombine -indvars \
3-
; RUN: -polly-prepare -polly-print-scops -disable-output < %s \
1+
; RUN: opt %loadNPMPolly -passes='sroa,instcombine,simplifycfg,reassociate,loop(loop-rotate),instcombine,indvars,polly-prepare,print<polly-function-scops>' \
2+
; RUN: -tailcallopt -disable-output < %s 2>&1 \
43
; RUN: | FileCheck %s --check-prefix=NOLICM
54

6-
; RUN: opt %loadPolly -basic-aa -sroa -instcombine -simplifycfg -tailcallopt \
7-
; RUN: -simplifycfg -reassociate -loop-rotate -instcombine -indvars -licm \
8-
; RUN: -polly-prepare -polly-print-scops -disable-output < %s \
5+
; RUN: opt %loadNPMPolly -passes='sroa,instcombine,simplifycfg,reassociate,loop(loop-rotate),instcombine,indvars,loop-mssa(licm),polly-prepare,print<polly-function-scops>' \
6+
; RUN: -tailcallopt -disable-output < %s 2>&1 \
97
; RUN: | FileCheck %s --check-prefix=LICM
108

119
; void foo(int n, float A[static const restrict n], float x) {

0 commit comments

Comments
 (0)