From 16466fd35c055ed402d2a928b5f3a73d1d56d882 Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Tue, 4 Feb 2014 16:20:49 +0900 Subject: [PATCH] use OP_NOP in pic_proc_apply --- src/proc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/proc.c b/src/proc.c index 507bf0fa..04e162b4 100644 --- a/src/proc.c +++ b/src/proc.c @@ -107,8 +107,7 @@ pic_proc_apply(pic_state *pic) *pic->ci->fp++ = v; } - iseq[0].insn = OP_JMP; /* OP_NOP */ - iseq[0].u.i = 1; + iseq[0].insn = OP_NOP; iseq[1].insn = OP_CALL; iseq[1].u.i = pic_length(pic, arg_list) + 1; iseq[2].insn = OP_RET;