Skip to content

Commit bafafeb

Browse files
Use parameter instead of looking up count
1 parent 13e4931 commit bafafeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/goto-symex/symex_goto.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -466,11 +466,11 @@ void goto_symext::phi_function(
466466
rhs=goto_state_rhs;
467467
else if(goto_state.guard.is_false())
468468
rhs=dest_state_rhs;
469-
else if(goto_state.level2_current_count(l1_identifier) == 0)
469+
else if(goto_count == 0)
470470
{
471471
rhs = dest_state_rhs;
472472
}
473-
else if(dest_state.level2.current_count(l1_identifier) == 0)
473+
else if(dest_count == 0)
474474
{
475475
rhs = goto_state_rhs;
476476
}

0 commit comments

Comments
 (0)