From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:57566) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQ8Q5-0003tP-2i for qemu-devel@nongnu.org; Wed, 10 Apr 2013 23:43:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UQ8Q3-0006Jj-HC for qemu-devel@nongnu.org; Wed, 10 Apr 2013 23:43:28 -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 1UQ8Q3-0006Iw-7I for qemu-devel@nongnu.org; Wed, 10 Apr 2013 23:43:27 -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 r3B3hPqM009276 for ; Thu, 11 Apr 2013 11:43:25 +0800 From: liguang Date: Thu, 11 Apr 2013 11:41:51 +0800 Message-Id: <1365651722-11241-5-git-send-email-lig.fnst@cn.fujitsu.com> In-Reply-To: <1365651722-11241-1-git-send-email-lig.fnst@cn.fujitsu.com> References: <1365651722-11241-1-git-send-email-lig.fnst@cn.fujitsu.com> Subject: [Qemu-devel] [PATCH 05/16] target-alpha/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-alpha/translate.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/target-alpha/translate.c b/target-alpha/translate.c index 4db16db..4b4320a 100644 --- a/target-alpha/translate.c +++ b/target-alpha/translate.c @@ -3425,9 +3425,9 @@ static inline void gen_intermediate_code_internal(CPUAlphaState *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] = ctx.pc; tcg_ctx.gen_opc_instr_start[lj] = 1; -- 1.7.2.5