From patchwork Tue Feb 5 12:12:43 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 218255 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 5CABC2C02BD for ; Tue, 5 Feb 2013 23:13:01 +1100 (EST) Received: from localhost ([::1]:58563 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2hOV-0000H1-I7 for incoming@patchwork.ozlabs.org; Tue, 05 Feb 2013 07:12:59 -0500 Received: from eggs.gnu.org ([208.118.235.92]:37442) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2hOM-0000GW-FR for qemu-devel@nongnu.org; Tue, 05 Feb 2013 07:12:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U2hOJ-0000e3-Vl for qemu-devel@nongnu.org; Tue, 05 Feb 2013 07:12:50 -0500 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:60628) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2hOJ-0000b7-Ov; Tue, 05 Feb 2013 07:12:47 -0500 Received: from localhost (v220110690675601.yourvserver.net.local [127.0.0.1]) by v220110690675601.yourvserver.net (Postfix) with ESMTP id 671787280030; Tue, 5 Feb 2013 13:12:45 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at weilnetz.de Received: from v220110690675601.yourvserver.net ([127.0.0.1]) by localhost (v220110690675601.yourvserver.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8TBFXOdIwI5Z; Tue, 5 Feb 2013 13:12:45 +0100 (CET) Received: by v220110690675601.yourvserver.net (Postfix, from userid 1000) id 0BB1D7280046; Tue, 5 Feb 2013 13:12:45 +0100 (CET) From: Stefan Weil To: qemu-devel@nongnu.org Date: Tue, 5 Feb 2013 13:12:43 +0100 Message-Id: <1360066363-19595-1-git-send-email-sw@weilnetz.de> X-Mailer: git-send-email 1.7.10.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 78.47.199.172 Cc: qemu-trivial@nongnu.org, Stefan Weil , Paul Brook Subject: [Qemu-devel] [PATCH] target-m68k: Fix comment 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 * spelling fix ito -> into * reorder to match load/store Signed-off-by: Stefan Weil --- target-m68k/translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-m68k/translate.c b/target-m68k/translate.c index e763195..3f1478c 100644 --- a/target-m68k/translate.c +++ b/target-m68k/translate.c @@ -574,7 +574,7 @@ static inline TCGv gen_ea_once(CPUM68KState *env, DisasContext *s, return gen_ldst(s, opsize, tmp, val, what); } -/* Generate code to load/store a value ito/from an EA. If VAL > 0 this is +/* Generate code to load/store a value from/into an EA. If VAL > 0 this is a write otherwise it is a read (0 == sign extend, -1 == zero extend). ADDRP is non-null for readwrite operands. */ static TCGv gen_ea(CPUM68KState *env, DisasContext *s, uint16_t insn,