From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:52112) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QJ6Uh-0006Ox-NU for qemu-devel@nongnu.org; Sun, 08 May 2011 12:06:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QJ6Ug-0007Yo-2I for qemu-devel@nongnu.org; Sun, 08 May 2011 12:06:07 -0400 Received: from mtagate5.uk.ibm.com ([194.196.100.165]:47539) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QJ6Uf-0007Y4-KV for qemu-devel@nongnu.org; Sun, 08 May 2011 12:06:05 -0400 Received: from d06nrmr1507.portsmouth.uk.ibm.com (d06nrmr1507.portsmouth.uk.ibm.com [9.149.38.233]) by mtagate5.uk.ibm.com (8.13.1/8.13.1) with ESMTP id p48G641l002990 for ; Sun, 8 May 2011 16:06:04 GMT Received: from d06av11.portsmouth.uk.ibm.com (d06av11.portsmouth.uk.ibm.com [9.149.37.252]) by d06nrmr1507.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p48G7KVX2572424 for ; Sun, 8 May 2011 17:07:20 +0100 Received: from d06av11.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av11.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p48G639k021784 for ; Sun, 8 May 2011 10:06:04 -0600 From: Stefan Hajnoczi Date: Sun, 8 May 2011 17:05:16 +0100 Message-Id: <1304870719-20885-22-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1304870719-20885-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1304870719-20885-1-git-send-email-stefanha@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 21/24] Fix spelling in comments (intruction -> instruction) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: qemu-devel@nongnu.org, Stefan Hajnoczi From: Stefan Weil Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- 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) \ -- 1.7.4.4