You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error: thread 'main' panicked at 'Tried to unwrap state edge', src/rvsdg/to_cfg.rs:62:38
Program that fails:
# ARGS: 3
@main(n: int) {
i: int = const 3;
x: int = add n i;
.loop:
c: int = const 7;
one: int = const 2;
cond: bool = lt i n;
y: int = mul c i;
print y;
i: int = add i one;
x: int = mul c i; <-- without this line the program succeeds
br cond .loop .done;
.done:
print x;
print i;
}
The text was updated successfully, but these errors were encountered:
Error:
thread 'main' panicked at 'Tried to unwrap state edge', src/rvsdg/to_cfg.rs:62:38
Program that fails:
The text was updated successfully, but these errors were encountered: