inline: avoid needless intermediate vars
commitb6b0d32a94a7ae21ac28be762be8ad50b092b177
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>
Sat, 25 Jun 2022 13:25:19 +0000 (25 15:25 +0200)
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>
Mon, 27 Jun 2022 10:13:07 +0000 (27 12:13 +0200)
treef69b841c022b132ffb8316fa65d2ef37897ea776
parentec2e9b554d4799633ff195106280a8146647db5b
inline: avoid needless intermediate vars

In inline_function(), we need to iterate over the parameters
and the (effective) arguments. An itermediate variable is used for
each: "name_list" and "arg_list".

These confuse me a lot (especially "name_list", "param_list" would
be much more OK) and are just used once.

So, avoid using an intermediate variable for these.

Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
inline.c