1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Make array construction use LOADVN (slightly faster)

This commit is contained in:
Stephen Dolan
2013-05-16 15:09:59 +01:00
parent bc42812715
commit 9b91eafac4

View File

@@ -317,7 +317,7 @@ block gen_collect(block expr) {
gen_op_target(FORK, tail),
expr,
tail,
gen_op_var_bound(LOADV, array_var));
gen_op_var_bound(LOADVN, array_var));
}
block gen_reduce(const char* varname, block source, block init, block body) {