@@ -80,10 +80,10 @@ void rd_range_domaint::transform(
80
80
transform_start_thread (ns, *rd);
81
81
// do argument-to-parameter assignments
82
82
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);
84
84
// cleanup parameters
85
85
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);
87
87
// lhs assignments
88
88
else if (from->is_assign ())
89
89
transform_assign (ns, from, from, *rd);
@@ -171,7 +171,6 @@ void rd_range_domaint::transform_function_call(
171
171
const irep_idt &function_from,
172
172
locationt from,
173
173
const irep_idt &function_to,
174
- locationt to,
175
174
reaching_definitions_analysist &rd)
176
175
{
177
176
const code_function_callt &code=to_code_function_call (from->code );
@@ -234,7 +233,6 @@ void rd_range_domaint::transform_end_function(
234
233
const namespacet &ns,
235
234
const irep_idt &function_from,
236
235
locationt from,
237
- const irep_idt &function_to,
238
236
locationt to,
239
237
reaching_definitions_analysist &rd)
240
238
{
0 commit comments