@@ -742,8 +742,8 @@ static void merge_names(
742
742
symex_target_equationt &target,
743
743
const incremental_dirtyt &dirty,
744
744
const ssa_exprt &ssa,
745
- const unsigned goto_count,
746
- const unsigned dest_count)
745
+ const std:: size_t goto_count,
746
+ const std:: size_t dest_count)
747
747
{
748
748
const irep_idt l1_identifier = ssa.get_identifier ();
749
749
const irep_idt &obj_identifier = ssa.get_object_name ();
@@ -876,10 +876,10 @@ void goto_symext::phi_function(
876
876
for (const auto &delta_item : delta_view)
877
877
{
878
878
const ssa_exprt &ssa = delta_item.m .first ;
879
- unsigned goto_count = delta_item.m .second ;
880
- unsigned dest_count = !delta_item.is_in_both_maps ()
881
- ? 0
882
- : delta_item.get_other_map_value ().second ;
879
+ std:: size_t goto_count = delta_item.m .second ;
880
+ std:: size_t dest_count = !delta_item.is_in_both_maps ()
881
+ ? 0
882
+ : delta_item.get_other_map_value ().second ;
883
883
884
884
merge_names (
885
885
goto_state,
@@ -905,8 +905,8 @@ void goto_symext::phi_function(
905
905
continue ;
906
906
907
907
const ssa_exprt &ssa = delta_item.m .first ;
908
- unsigned goto_count = 0 ;
909
- unsigned dest_count = delta_item.m .second ;
908
+ std:: size_t goto_count = 0 ;
909
+ std:: size_t dest_count = delta_item.m .second ;
910
910
911
911
merge_names (
912
912
goto_state,
0 commit comments