From patchwork Thu Apr 11 03:41:53 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: liguang X-Patchwork-Id: 235551 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 CB8BE2C0161 for ; Thu, 11 Apr 2013 13:48:17 +1000 (EST) Received: from localhost ([::1]:51138 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQ8Ui-0002XQ-2R for incoming@patchwork.ozlabs.org; Wed, 10 Apr 2013 23:48:16 -0400 Received: from eggs.gnu.org ([208.118.235.92]:57601) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQ8Q6-0003vg-Q3 for qemu-devel@nongnu.org; Wed, 10 Apr 2013 23:43:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UQ8Q4-0006KK-JW for qemu-devel@nongnu.org; Wed, 10 Apr 2013 23:43:30 -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 1UQ8Q4-0006Iw-83 for qemu-devel@nongnu.org; Wed, 10 Apr 2013 23:43:28 -0400 X-IronPort-AV: E=Sophos;i="4.87,452,1363104000"; d="scan'208";a="7032942" Received: from unknown (HELO tang.cn.fujitsu.com) ([10.167.250.3]) by song.cn.fujitsu.com with ESMTP; 11 Apr 2013 11:40:49 +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 r3B3hRuL009283 for ; Thu, 11 Apr 2013 11:43:27 +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 2013041111421414-463953 ; Thu, 11 Apr 2013 11:42:14 +0800 From: liguang To: qemu-devel@nongnu.org Date: Thu, 11 Apr 2013 11:41:53 +0800 Message-Id: <1365651722-11241-7-git-send-email-lig.fnst@cn.fujitsu.com> X-Mailer: git-send-email 1.7.2.5 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> X-MIMETrack: Itemize by SMTP Server on mailserver/fnst(Release 8.5.3|September 15, 2011) at 2013/04/11 11:42:14, Serialize by Router on mailserver/fnst(Release 8.5.3|September 15, 2011) at 2013/04/11 11:42:15, Serialize complete at 2013/04/11 11:42:15 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] [PATCH 07/16] target-m68k/translate: mininally 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-m68k/translate.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/target-m68k/translate.c b/target-m68k/translate.c index 32b8132..9469a55 100644 --- a/target-m68k/translate.c +++ b/target-m68k/translate.c @@ -3023,9 +3023,9 @@ gen_intermediate_code_internal(CPUM68KState *env, TranslationBlock *tb, 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] = dc->pc; tcg_ctx.gen_opc_instr_start[lj] = 1;