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
For continue_break_exit1, we are currently generating the following, where the next state is not assigned for state 1.
voidcontinue_break_exit1() {
int k = 0;
wait();
while (1) {
k = 0;
for ( ; ; ) {
wait();
k = k + 1;
if (a.read()) {
break;
} else {
continue;
}
sct_assert_level(2);
}
sct_assert_level(1);
k = 1;
}
}
https://github.com/intel/systemc-compiler/blob/main/tests/cthread/test_continue.cpp
For
continue_break_exit1
, we are currently generating the following, where the next state is not assigned for state 1.The text was updated successfully, but these errors were encountered: