From: Adrian M. Enache Date: Sat, 10 Jan 2004 20:19:09 +0000 (+0000) Subject: nit to Bytecode - the av_extend opcode wasn't saved when X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fd680345fcfacb919b0b33f4035408eaca5eba6f;p=p5sagit%2Fp5-mst-13.2.git nit to Bytecode - the av_extend opcode wasn't saved when the array had AvFILL == 0 p4raw-id: //depot/perl@22107 --- diff --git a/ext/B/B/Assembler.pm b/ext/B/B/Assembler.pm index dc24d66..fce3753 100644 --- a/ext/B/B/Assembler.pm +++ b/ext/B/B/Assembler.pm @@ -291,7 +291,8 @@ sub assemble { sub asm { return if $_[0] =~ /\s*\W/; if (defined $_[1]) { - return if $_[1] eq "0" and $_[0] !~ /^(?:newsvx?|av_pushx?|xav_flags)$/; + return if $_[1] eq "0" and + $_[0] !~ /^(?:newsvx?|av_pushx?|av_extend|xav_flags)$/; return if $_[1] eq "1" and $_[0] =~ /^(?:sv_refcnt)$/; } assemble "@_";