@@ -414,7 +414,7 @@ void local_value_set_analysist::transform_function_stub(
414
414
const auto &rhs_expr = assignment.second ;
415
415
if (pre_call_rhs_value_sets.count (rhs_expr))
416
416
continue ;
417
- auto &rhs_map = pre_call_rhs_value_sets[rhs_expr];
417
+ value_sett::object_mapt &rhs_values = pre_call_rhs_value_sets[rhs_expr];
418
418
if (rhs_expr.id () == ID_external_value_set)
419
419
{
420
420
// The RHS expression is an external value set. Expand this to read from
@@ -441,16 +441,16 @@ void local_value_set_analysist::transform_function_stub(
441
441
rhs_entries);
442
442
}
443
443
444
- // Accumulate all possibly-read pointers into `rhs_map `:
444
+ // Accumulate all possibly-read pointers into `rhs_values `:
445
445
for (const auto &rhs_entry : rhs_entries)
446
446
{
447
447
valuesets.make_union_adjusting_types (
448
- rhs_map , rhs_entry->object_map , evse.type (), ns);
448
+ rhs_values , rhs_entry->object_map , evse.type (), ns);
449
449
}
450
450
// Also add the external set itself,
451
451
// representing the possibility that the read
452
452
// comes from outside *this* function as well:
453
- valuesets.insert (rhs_map , evse);
453
+ valuesets.insert (rhs_values , evse);
454
454
}
455
455
else if (has_prefix (evse_label, PRECISE_EVS_PREFIX))
456
456
{
@@ -459,7 +459,8 @@ void local_value_set_analysist::transform_function_stub(
459
459
exprt precise_access_path_expr =
460
460
get_expr_from_precise_evs (evse, function_symbol, fcall, ns, *this );
461
461
462
- valuesets.get_value_set (precise_access_path_expr, rhs_map, ns, false );
462
+ valuesets.get_value_set (
463
+ precise_access_path_expr, rhs_values, ns, false );
463
464
}
464
465
else
465
466
{
@@ -470,7 +471,7 @@ void local_value_set_analysist::transform_function_stub(
470
471
exprt root_object_expr = get_expr_from_root_object_evs (
471
472
evse, function_symbol, fcall, ns, *this );
472
473
473
- valuesets.get_value_set (root_object_expr, rhs_map , ns, false );
474
+ valuesets.get_value_set (root_object_expr, rhs_values , ns, false );
474
475
}
475
476
}
476
477
else
@@ -485,7 +486,7 @@ void local_value_set_analysist::transform_function_stub(
485
486
valuesets.demote_most_recent_dynamic_objects (loc_number);
486
487
}
487
488
488
- valuesets.insert (rhs_map , rhs_expr);
489
+ valuesets.insert (rhs_values , rhs_expr);
489
490
}
490
491
}
491
492
0 commit comments