From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:57519) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQ8Q2-0003t7-Pj for qemu-devel@nongnu.org; Wed, 10 Apr 2013 23:43:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UQ8Q1-0006J7-Hb for qemu-devel@nongnu.org; Wed, 10 Apr 2013 23:43:26 -0400 Received: from [222.73.24.84] (port=30014 helo=song.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQ8Q1-0006Iw-7F for qemu-devel@nongnu.org; Wed, 10 Apr 2013 23:43:25 -0400 Received: from fnstmail02.fnst.cn.fujitsu.com (tang.cn.fujitsu.com [127.0.0.1]) by tang.cn.fujitsu.com (8.14.3/8.13.1) with ESMTP id r3B3hNXF009267 for ; Thu, 11 Apr 2013 11:43:23 +0800 From: liguang Date: Thu, 11 Apr 2013 11:41:47 +0800 Message-Id: <1365651722-11241-1-git-send-email-lig.fnst@cn.fujitsu.com> Subject: [Qemu-devel] [PATCH 01/16] target-i386/translate: mininally change gen_intermediate_code_internal List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: liguang Signed-off-by: liguang --- target-i386/translate.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/target-i386/translate.c b/target-i386/translate.c index 7596a90..74385c8 100644 --- a/target-i386/translate.c +++ b/target-i386/translate.c @@ -8338,9 +8338,9 @@ static inline void gen_intermediate_code_internal(CPUX86State *env, if (search_pc) { j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf; if (lj < j) { - lj++; - while (lj < j) - tcg_ctx.gen_opc_instr_start[lj++] = 0; + while (++lj < j) { + tcg_ctx.gen_opc_instr_start[lj] = 0; + } } tcg_ctx.gen_opc_pc[lj] = pc_ptr; gen_opc_cc_op[lj] = dc->cc_op; -- 1.7.2.5