File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -412,8 +412,7 @@ void goto_symext::phi_function(
412
412
if (obj_identifier==guard_identifier)
413
413
return ; // just a guard, don't bother
414
414
415
- if (goto_state.level2_current_count (l1_identifier)==
416
- dest_state.level2 .current_count (l1_identifier))
415
+ if (goto_count == dest_count)
417
416
return ; // not at all changed
418
417
419
418
// changed!
@@ -445,8 +444,7 @@ void goto_symext::phi_function(
445
444
if (p_it != goto_state.propagation .end ())
446
445
goto_state_rhs=p_it->second ;
447
446
else
448
- to_ssa_expr (goto_state_rhs).set_level_2 (
449
- goto_state.level2_current_count (l1_identifier));
447
+ to_ssa_expr (goto_state_rhs).set_level_2 (goto_count);
450
448
}
451
449
452
450
{
@@ -455,8 +453,7 @@ void goto_symext::phi_function(
455
453
if (p_it != dest_state.propagation .end ())
456
454
dest_state_rhs=p_it->second ;
457
455
else
458
- to_ssa_expr (dest_state_rhs).set_level_2 (
459
- dest_state.level2 .current_count (l1_identifier));
456
+ to_ssa_expr (dest_state_rhs).set_level_2 (dest_count);
460
457
}
461
458
462
459
exprt rhs;
You can’t perform that action at this time.
0 commit comments