We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 730e026 commit 46f14a8Copy full SHA for 46f14a8
src/goto-symex/symex_goto.cpp
@@ -489,9 +489,12 @@ static void merge_names(
489
}
490
else
491
{
492
- rhs = if_exprt(diff_guard.as_expr(), goto_state_rhs, dest_state_rhs);
493
if(do_simplify)
494
- simplify(rhs, ns);
+ {
+ simplify(goto_state_rhs, ns);
495
+ simplify(dest_state_rhs, ns);
496
+ }
497
+ rhs = if_exprt(diff_guard.as_expr(), goto_state_rhs, dest_state_rhs);
498
499
500
ssa_exprt new_lhs = ssa;
0 commit comments