Skip to content

Commit

Permalink
Fix spelling in comments (intruction -> instruction)
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <[email protected]>
Signed-off-by: Stefan Hajnoczi <[email protected]>
  • Loading branch information
Stefan Weil authored and Stefan Hajnoczi committed May 8, 2011
1 parent 7ba4cbb commit 5ba1854
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bsd-user/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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],
Expand Down
2 changes: 1 addition & 1 deletion linux-user/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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],
Expand Down
2 changes: 1 addition & 1 deletion tests/test-i386.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) \
Expand Down

0 comments on commit 5ba1854

Please sign in to comment.