From patchwork Thu Apr 11 06:32:37 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: liguang X-Patchwork-Id: 235584 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id C4D9C2C00C8 for ; Thu, 11 Apr 2013 16:40:28 +1000 (EST) Received: from localhost ([::1]:51705 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQBBL-0005Zh-0K for incoming@patchwork.ozlabs.org; Thu, 11 Apr 2013 02:40:27 -0400 Received: from eggs.gnu.org ([208.118.235.92]:35678) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQB5t-00063r-PX for qemu-devel@nongnu.org; Thu, 11 Apr 2013 02:34:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UQB5r-0000NV-Vp for qemu-devel@nongnu.org; Thu, 11 Apr 2013 02:34:49 -0400 Received: from [222.73.24.84] (port=4894 helo=song.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQB5r-0000Lt-K2 for qemu-devel@nongnu.org; Thu, 11 Apr 2013 02:34:47 -0400 X-IronPort-AV: E=Sophos;i="4.87,454,1363104000"; d="scan'208";a="7034080" Received: from unknown (HELO tang.cn.fujitsu.com) ([10.167.250.3]) by song.cn.fujitsu.com with ESMTP; 11 Apr 2013 14:32:08 +0800 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 r3B6Yi5x021656 for ; Thu, 11 Apr 2013 14:34:45 +0800 Received: from liguang.fnst.cn.fujitsu.com ([10.167.233.147]) by fnstmail02.fnst.cn.fujitsu.com (Lotus Domino Release 8.5.3) with ESMTP id 2013041114333333-468722 ; Thu, 11 Apr 2013 14:33:33 +0800 From: liguang To: qemu-devel@nongnu.org Date: Thu, 11 Apr 2013 14:32:37 +0800 Message-Id: <1365661963-15396-10-git-send-email-lig.fnst@cn.fujitsu.com> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1365661963-15396-1-git-send-email-lig.fnst@cn.fujitsu.com> References: <1365661963-15396-1-git-send-email-lig.fnst@cn.fujitsu.com> X-MIMETrack: Itemize by SMTP Server on mailserver/fnst(Release 8.5.3|September 15, 2011) at 2013/04/11 14:33:33, Serialize by Router on mailserver/fnst(Release 8.5.3|September 15, 2011) at 2013/04/11 14:33:33, Serialize complete at 2013/04/11 14:33:33 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 222.73.24.84 Cc: liguang Subject: [Qemu-devel] [update][PATCH 10/16] target-openrisc/translate: minimally change gen_intermediate_code_internal X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: liguang --- target-openrisc/translate.c | 10 ++++------ 1 files changed, 4 insertions(+), 6 deletions(-) diff --git a/target-openrisc/translate.c b/target-openrisc/translate.c index 0eafd02..f6a933d 100644 --- a/target-openrisc/translate.c +++ b/target-openrisc/translate.c @@ -1703,9 +1703,8 @@ static inline void gen_intermediate_code_internal(OpenRISCCPU *cpu, if (search_pc) { j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf; if (k < j) { - k++; - while (k < j) { - tcg_ctx.gen_opc_instr_start[k++] = 0; + while (++k < j) { + tcg_ctx.gen_opc_instr_start[k] = 0; } } tcg_ctx.gen_opc_pc[k] = dc->pc; @@ -1783,9 +1782,8 @@ static inline void gen_intermediate_code_internal(OpenRISCCPU *cpu, *tcg_ctx.gen_opc_ptr = INDEX_op_end; if (search_pc) { j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf; - k++; - while (k <= j) { - tcg_ctx.gen_opc_instr_start[k++] = 0; + while (++k <= j) { + tcg_ctx.gen_opc_instr_start[k] = 0; } } else { tb->size = dc->pc - pc_start;