@@ -181,7 +181,7 @@ void symex_target_equationt::location(
181
181
void symex_target_equationt::function_call (
182
182
const exprt &guard,
183
183
const irep_idt &function_id,
184
- const std::vector<renamedt< exprt, L2> > &function_arguments,
184
+ const std::vector<exprt> &function_arguments,
185
185
const sourcet &source,
186
186
const bool hidden)
187
187
{
@@ -190,8 +190,7 @@ void symex_target_equationt::function_call(
190
190
191
191
SSA_step.guard = guard;
192
192
SSA_step.called_function = function_id;
193
- for (const auto &arg : function_arguments)
194
- SSA_step.ssa_function_arguments .emplace_back (arg.get ());
193
+ SSA_step.ssa_function_arguments = function_arguments;
195
194
SSA_step.hidden = hidden;
196
195
197
196
merge_ireps (SSA_step);
@@ -217,14 +216,13 @@ void symex_target_equationt::output(
217
216
const exprt &guard,
218
217
const sourcet &source,
219
218
const irep_idt &output_id,
220
- const std::list<renamedt< exprt, L2> > &args)
219
+ const std::list<exprt> &args)
221
220
{
222
221
SSA_steps.emplace_back (source, goto_trace_stept::typet::OUTPUT);
223
222
SSA_stept &SSA_step=SSA_steps.back ();
224
223
225
224
SSA_step.guard =guard;
226
- for (const auto &arg : args)
227
- SSA_step.io_args .emplace_back (arg.get ());
225
+ SSA_step.io_args = args;
228
226
SSA_step.io_id =output_id;
229
227
230
228
merge_ireps (SSA_step);
@@ -299,14 +297,14 @@ void symex_target_equationt::assertion(
299
297
300
298
void symex_target_equationt::goto_instruction (
301
299
const exprt &guard,
302
- const renamedt< exprt, L2> &cond,
300
+ const exprt &cond,
303
301
const sourcet &source)
304
302
{
305
303
SSA_steps.emplace_back (source, goto_trace_stept::typet::GOTO);
306
304
SSA_stept &SSA_step=SSA_steps.back ();
307
305
308
306
SSA_step.guard =guard;
309
- SSA_step.cond_expr = cond. get () ;
307
+ SSA_step.cond_expr = cond;
310
308
311
309
merge_ireps (SSA_step);
312
310
}
0 commit comments