Skip to content

Commit c0f8452

Browse files
committed
Fix test cases which fail due to changes in isl's set representation
llvm-svn: 245301
1 parent cf9ebb6 commit c0f8452

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

polly/test/DependenceInfo/computeout.ll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ exit.3:
5757
; VALUE: { }
5858
; VALUE: WAW dependences:
5959
; VALUE: {
60-
; VALUE: Stmt_S1[i0] -> Stmt_S2[i0] : i0 >= 0 and i0 <= 9;
61-
; VALUE: Stmt_S2[i0] -> Stmt_S3[i0] : i0 >= 0 and i0 <= 9;
62-
; VALUE: Stmt_S1[i0] -> Stmt_S3[i0] : i0 >= 10 and i0 <= 99
60+
; VALUE: Stmt_S1[i0] -> Stmt_S2[i0] : i0 <= 9 and i0 >= 0;
61+
; VALUE: Stmt_S2[i0] -> Stmt_S3[i0] : i0 <= 9 and i0 >= 0;
62+
; VALUE: Stmt_S1[i0] -> Stmt_S3[i0] : i0 <= 99 and i0 >= 10
6363
; VALUE: }
6464

6565
; TIMEOUT: region: 'S1 => exit.3' in function 'sequential_writes':

polly/test/DependenceInfo/do_pluto_matmult.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ do.end45: ; preds = %do.cond42
6565
}
6666

6767
; VALUE: RAW dependences:
68-
; VALUE: { Stmt_do_body2[i0, i1, i2] -> Stmt_do_body2[i0, i1, 1 + i2] : i0 >= 0 and i0 <= 35 and i1 >= 0 and i1 <= 35 and i2 >= 0 and i2 <= 34 }
68+
; VALUE: { Stmt_do_body2[i0, i1, i2] -> Stmt_do_body2[i0, i1, 1 + i2] : i0 <= 35 and i0 >= 0 and i1 <= 35 and i1 >= 0 and i2 <= 34 and i2 >= 0 }
6969
; VALUE: WAR dependences:
7070
; VALUE: { }
7171
; VALUE: WAW dependences:

polly/test/DependenceInfo/sequential_loops.ll

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ exit.3:
5757
; VALUE: { }
5858
; VALUE: WAW dependences:
5959
; VALUE: {
60-
; VALUE: Stmt_S1[i0] -> Stmt_S2[i0] : i0 >= 0 and i0 <= 9;
61-
; VALUE: Stmt_S2[i0] -> Stmt_S3[i0] : i0 >= 0 and i0 <= 9;
62-
; VALUE: Stmt_S1[i0] -> Stmt_S3[i0] : i0 >= 10 and i0 <= 99
60+
; VALUE: Stmt_S1[i0] -> Stmt_S2[i0] : i0 <= 9 and i0 >= 0;
61+
; VALUE: Stmt_S2[i0] -> Stmt_S3[i0] : i0 <= 9 and i0 >= 0;
62+
; VALUE: Stmt_S1[i0] -> Stmt_S3[i0] : i0 <= 99 and i0 >= 10
6363
; VALUE: }
6464

6565
; MEMORY-LABEL: region: 'S1 => exit.3' in function 'sequential_writes':
@@ -128,8 +128,8 @@ exit.3:
128128
; VALUE-LABEL: region: 'S1 => exit.3' in function 'read_after_writes':
129129
; VALUE: RAW dependences:
130130
; VALUE: {
131-
; VALUE: Stmt_S2[i0] -> Stmt_S3[i0] : i0 >= 0 and i0 <= 9;
132-
; VALUE: Stmt_S1[i0] -> Stmt_S3[i0] : i0 >= 10 and i0 <= 99
131+
; VALUE: Stmt_S2[i0] -> Stmt_S3[i0] : i0 <= 9 and i0 >= 0;
132+
; VALUE: Stmt_S1[i0] -> Stmt_S3[i0] : i0 <= 99 and i0 >= 10
133133
; VALUE: }
134134
; VALUE: WAR dependences:
135135
; VALUE: { }
@@ -272,7 +272,7 @@ exit.2:
272272
; VALUE: RAW dependences:
273273
; VALUE: [p] -> {
274274
; VALUE: Stmt_S1[i0] -> Stmt_S2[-p + i0] :
275-
; VALUE: p <= 190 and i0 >= p and i0 <= 9 + p and i0 >= 0 and i0 <= 99
275+
; VALUE: i0 >= 0 and i0 <= 9 + p and i0 >= p and i0 <= 99 and p <= 190
276276
; VALUE: }
277277
; VALUE: WAR dependences:
278278
; VALUE: [p] -> {

0 commit comments

Comments
 (0)