commit | b6b0d32a94a7ae21ac28be762be8ad50b092b177 | [log] [tgz] |
---|---|---|
author | Luc Van Oostenryck <luc.vanoostenryck@gmail.com> | Sat Jun 25 15:25:19 2022 +0200 |
committer | Luc Van Oostenryck <luc.vanoostenryck@gmail.com> | Mon Jun 27 12:13:07 2022 +0200 |
tree | f69b841c022b132ffb8316fa65d2ef37897ea776 | |
parent | ec2e9b554d4799633ff195106280a8146647db5b [diff] |
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>