From: Stephen Dolan Date: Thu, 16 May 2013 14:09:59 +0000 (+0100) Subject: Make array construction use LOADVN (slightly faster) X-Git-Tag: jq-1.3~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9b91eafac4df406e48348e2cb0baf6fcb998a6fa;p=jq Make array construction use LOADVN (slightly faster) --- diff --git a/compile.c b/compile.c index 95cd59e..bf4f92f 100644 --- a/compile.c +++ b/compile.c @@ -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) {