X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fops.expect.c;fp=tests%2Fops.expect.c;h=f036bed320f8137f628142ceb5e679208bba656e;hb=8c83cc48a2090b018cb39a629454b5e9608ba4d8;hp=4a59e21bf5e0360d9d5e6715d212daaa82906555;hpb=93b5bd181600ddf5097d133c52cdc7b1d4a2c7c8;p=ia32rtools.git diff --git a/tests/ops.expect.c b/tests/ops.expect.c index 4a59e21..f036bed 100644 --- a/tests/ops.expect.c +++ b/tests/ops.expect.c @@ -35,11 +35,11 @@ loop: edx = (s32)eax >> 31; // cdq eax = ecx ? __builtin_ffs(ecx) - 1 : 0; // bsf tmp64 = ((u64)edx << 32) | eax; - tmp64 = (s64)tmp64 <<= LOBYTE(ecx); + tmp64 = (s64)tmp64 << LOBYTE(ecx); edx = tmp64 >> 32; eax = tmp64; // allshl edi = eax; tmp64 = ((u64)edx << 32) | eax; - tmp64 = (s64)tmp64 >>= LOBYTE(ecx); + tmp64 = (s64)tmp64 >> LOBYTE(ecx); edx = tmp64 >> 32; eax = tmp64; // allshr eax = __builtin_bswap32(eax); ecx ^= eax;