File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -247,16 +247,16 @@ void lazy_goto_modelt::load_all_functions() const
247
247
bool lazy_goto_modelt::finalize ()
248
248
{
249
249
messaget msg (message_handler);
250
- journalling_symbol_tablet symbol_table =
251
- journalling_symbol_tablet::wrap (this -> symbol_table );
252
- if (language_files.final (symbol_table ))
250
+ journalling_symbol_tablet j_symbol_table =
251
+ journalling_symbol_tablet::wrap (symbol_table);
252
+ if (language_files.final (j_symbol_table ))
253
253
{
254
254
msg.error () << " CONVERSION ERROR" << messaget::eom;
255
255
return true ;
256
256
}
257
- for (const irep_idt &updated_symbol_id : symbol_table .get_updated ())
257
+ for (const irep_idt &updated_symbol_id : j_symbol_table .get_updated ())
258
258
{
259
- if (symbol_table .lookup_ref (updated_symbol_id).is_function ())
259
+ if (j_symbol_table .lookup_ref (updated_symbol_id).is_function ())
260
260
{
261
261
// Re-convert any that already exist
262
262
goto_functions.unload (updated_symbol_id);
You can’t perform that action at this time.
0 commit comments