From patchwork Sat May 7 20:20:03 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 94509 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id E1D4C1007DB for ; Sun, 8 May 2011 06:20:18 +1000 (EST) Received: from localhost ([::1]:54237 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QInz6-0003Wq-Cx for incoming@patchwork.ozlabs.org; Sat, 07 May 2011 16:20:16 -0400 Received: from eggs.gnu.org ([140.186.70.92]:43935) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QInyy-0003VZ-HB for qemu-devel@nongnu.org; Sat, 07 May 2011 16:20:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QInyx-0003nI-Cm for qemu-devel@nongnu.org; Sat, 07 May 2011 16:20:08 -0400 Received: from moutng.kundenserver.de ([212.227.126.187]:58773) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QInyx-0003mP-1m; Sat, 07 May 2011 16:20:07 -0400 Received: from flocke.fritz.box (p54ADACCA.dip.t-dialin.net [84.173.172.202]) by mrelayeu.kundenserver.de (node=mreu2) with ESMTP (Nemesis) id 0LaHLm-1Ptsol0TTq-00m4cY; Sat, 07 May 2011 22:20:06 +0200 Received: from stefan by flocke.fritz.box with local (Exim 4.72) (envelope-from ) id 1QInyu-00053S-95; Sat, 07 May 2011 22:20:04 +0200 From: Stefan Weil To: QEMU Developers Date: Sat, 7 May 2011 22:20:03 +0200 Message-Id: <1304799603-19402-1-git-send-email-weil@mail.berlios.de> X-Mailer: git-send-email 1.7.2.5 X-Provags-ID: V02:K0:jp+dGGemp+X6BFg2RCNEJnjEzrzyGaywlOxfzfNAe86 YDij+RUZ7ywNyW/9z00I6x2GudPUbF4EeWBGY2hgsLZZ9tuXd0 2lPGutC642p1l5kqK+7NQIgnTPSoS62Nx5c8UKkP1yUBCoYvSj tIAnVloAciQ8xwnZa8HXyoZoR5uFqBiEanuGVgfLwBrtCLCTzg fdq+9ATmRE+Ft185eSsKB9apHncM4A1+gYscuN09LurXosDeaw MRfJI9lNqkuDj X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 212.227.126.187 Cc: qemu-trivial@nongnu.org Subject: [Qemu-devel] [PATCH] Fix spelling in comments (intruction -> instruction) 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: Stefan Weil --- bsd-user/main.c | 2 +- linux-user/main.c | 2 +- tests/test-i386.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bsd-user/main.c b/bsd-user/main.c index 6b12f8b..0c3fca1 100644 --- a/bsd-user/main.c +++ b/bsd-user/main.c @@ -237,7 +237,7 @@ void cpu_loop(CPUX86State *env) break; #ifndef TARGET_ABI32 case EXCP_SYSCALL: - /* syscall from syscall intruction */ + /* syscall from syscall instruction */ if (bsd_type == target_freebsd) env->regs[R_EAX] = do_freebsd_syscall(env, env->regs[R_EAX], diff --git a/linux-user/main.c b/linux-user/main.c index a1e37e4..a4996e7 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -323,7 +323,7 @@ void cpu_loop(CPUX86State *env) break; #ifndef TARGET_ABI32 case EXCP_SYSCALL: - /* linux syscall from syscall intruction */ + /* linux syscall from syscall instruction */ env->regs[R_EAX] = do_syscall(env, env->regs[R_EAX], env->regs[R_EDI], diff --git a/tests/test-i386.c b/tests/test-i386.c index 8f481c7..56ff110 100644 --- a/tests/test-i386.c +++ b/tests/test-i386.c @@ -2281,7 +2281,7 @@ void test_sse_comi(double a1, double b1) } /* Force %xmm0 usage to avoid the case where both register index are 0 - to test intruction decoding more extensively */ + to test instruction decoding more extensively */ #define CVT_OP_XMM2MMX(op)\ {\ asm volatile (#op " %1, %0" : "=y" (r.q[0]) : "x" (a.dq) \