Revision 5ba18547

b/bsd-user/main.c
237 237
            break;
238 238
#ifndef TARGET_ABI32
239 239
        case EXCP_SYSCALL:
240
            /* syscall from syscall intruction */
240
            /* syscall from syscall instruction */
241 241
            if (bsd_type == target_freebsd)
242 242
                env->regs[R_EAX] = do_freebsd_syscall(env,
243 243
                                                      env->regs[R_EAX],
b/linux-user/main.c
323 323
            break;
324 324
#ifndef TARGET_ABI32
325 325
        case EXCP_SYSCALL:
326
            /* linux syscall from syscall intruction */
326
            /* linux syscall from syscall instruction */
327 327
            env->regs[R_EAX] = do_syscall(env,
328 328
                                          env->regs[R_EAX],
329 329
                                          env->regs[R_EDI],
b/tests/test-i386.c
2281 2281
}
2282 2282

  
2283 2283
/* Force %xmm0 usage to avoid the case where both register index are 0
2284
   to test intruction decoding more extensively */
2284
   to test instruction decoding more extensively */
2285 2285
#define CVT_OP_XMM2MMX(op)\
2286 2286
{\
2287 2287
    asm volatile (#op " %1, %0" : "=y" (r.q[0]) : "x" (a.dq) \

Also available in: Unified diff