@@ -80,10 +80,10 @@ void rd_range_domaint::transform(
8080 transform_start_thread (ns, *rd);
8181 // do argument-to-parameter assignments
8282 else if (from->is_function_call ())
83- transform_function_call (ns, function_from, from, function_to, to, *rd);
83+ transform_function_call (ns, function_from, from, function_to, *rd);
8484 // cleanup parameters
8585 else if (from->is_end_function ())
86- transform_end_function (ns, function_from, from, function_to, to, *rd);
86+ transform_end_function (ns, function_from, from, to, *rd);
8787 // lhs assignments
8888 else if (from->is_assign ())
8989 transform_assign (ns, from, from, *rd);
@@ -171,7 +171,6 @@ void rd_range_domaint::transform_function_call(
171171 const irep_idt &function_from,
172172 locationt from,
173173 const irep_idt &function_to,
174- locationt to,
175174 reaching_definitions_analysist &rd)
176175{
177176 const code_function_callt &code=to_code_function_call (from->code );
@@ -234,7 +233,6 @@ void rd_range_domaint::transform_end_function(
234233 const namespacet &ns,
235234 const irep_idt &function_from,
236235 locationt from,
237- const irep_idt &function_to,
238236 locationt to,
239237 reaching_definitions_analysist &rd)
240238{
0 commit comments