@@ -209,33 +209,33 @@ void symex_target_equationt::location(
209209// / just record a location
210210void symex_target_equationt::function_call (
211211 const exprt &guard,
212- const irep_idt &identifier ,
212+ const irep_idt &function_identifier ,
213213 const sourcet &source)
214214{
215215 SSA_steps.push_back (SSA_stept ());
216216 SSA_stept &SSA_step=SSA_steps.back ();
217217
218- SSA_step.guard = guard;
219- SSA_step.type = goto_trace_stept::typet::FUNCTION_CALL;
220- SSA_step.source = source;
221- SSA_step.identifier =identifier ;
218+ SSA_step.guard = guard;
219+ SSA_step.type = goto_trace_stept::typet::FUNCTION_CALL;
220+ SSA_step.source = source;
221+ SSA_step.function_identifier = function_identifier ;
222222
223223 merge_ireps (SSA_step);
224224}
225225
226226// / just record a location
227227void symex_target_equationt::function_return (
228228 const exprt &guard,
229- const irep_idt &identifier ,
229+ const irep_idt &function_identifier ,
230230 const sourcet &source)
231231{
232232 SSA_steps.push_back (SSA_stept ());
233233 SSA_stept &SSA_step=SSA_steps.back ();
234234
235- SSA_step.guard = guard;
236- SSA_step.type = goto_trace_stept::typet::FUNCTION_RETURN;
237- SSA_step.source = source;
238- SSA_step.identifier =identifier ;
235+ SSA_step.guard = guard;
236+ SSA_step.type = goto_trace_stept::typet::FUNCTION_RETURN;
237+ SSA_step.source = source;
238+ SSA_step.function_identifier = function_identifier ;
239239
240240 merge_ireps (SSA_step);
241241}
0 commit comments