From: Stefan Weil Date: Sat, 7 May 2011 20:20:03 +0000 (+0200) Subject: Fix spelling in comments (intruction -> instruction) X-Git-Tag: v0.15.0-rc0~288^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5ba185473b20902e862e90d89cabfa7f42f13a40;p=thirdparty%2Fqemu.git Fix spelling in comments (intruction -> instruction) Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- diff --git a/bsd-user/main.c b/bsd-user/main.c index 6b12f8bba1d..0c3fca15ca7 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 a1e37e49487..a4996e7e3a2 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 8f481c7f7ad..56ff1103fa8 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) \