Skip to content
Snippets Groups Projects
Commit d1eb3b4d authored by Russel Arbore's avatar Russel Arbore
Browse files

loop canon bounds doesn't work for test2 in fork_join_tests

parent 44edca09
No related branches found
No related tags found
1 merge request!188Loop canon bound fix
Pipeline #201718 passed
...@@ -25,6 +25,12 @@ gvn(*); ...@@ -25,6 +25,12 @@ gvn(*);
phi-elim(*); phi-elim(*);
dce(*); dce(*);
xdot[true](auto.test2);
lift-dc-math(auto.test2);
xdot[true](auto.test2);
loop-bound-canon(auto.test2);
xdot[true](auto.test2);
fixpoint panic after 20 { fixpoint panic after 20 {
forkify(*); forkify(*);
fork-guard-elim(*); fork-guard-elim(*);
......
...@@ -12,7 +12,7 @@ fn test1(input : i32) -> i32[4, 4] { ...@@ -12,7 +12,7 @@ fn test1(input : i32) -> i32[4, 4] {
#[entry] #[entry]
fn test2(input : i32) -> i32[4, 5] { fn test2(input : i32) -> i32[4, 5] {
let arr : i32[4, 5]; let arr : i32[4, 5];
@loop1 for i = 0 to 8 { @loop1 for i = 1 to 9 {
@loop2 for k = 0 to 5 { @loop2 for k = 0 to 5 {
@loop3 for j = 0 to 4 { @loop3 for j = 0 to 4 {
arr[j, k] += input; arr[j, k] += input;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment