summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2021-06-18 22:02:47 +0200
committerBond_009 <bond.009@outlook.com>2021-06-18 22:02:47 +0200
commit4ecc8a5baf2662dbb20071a96d8ac30180a6a0bc (patch)
tree1b1c34ca7b5a63be051955134237faea1162b3a5
parent04e1607c944b5a133f20e5cd1f213e0d2da0702b (diff)
Fix SIMD asm impl of day 5
-rw-r--r--5/seat_id_ssse3.asm (renamed from 5/seat_id_sse3.asm)1
1 files changed, 0 insertions, 1 deletions
diff --git a/5/seat_id_sse3.asm b/5/seat_id_ssse3.asm
index a377932..4d51cbe 100644
--- a/5/seat_id_sse3.asm
+++ b/5/seat_id_ssse3.asm
@@ -8,7 +8,6 @@ section .rodata
section .text
seat_id:
- xor eax, eax ; set up return value
movq xmm0, qword [rdi] ; load first 8 bytes
pshufb xmm0, [rel xmm_shuf] ; reverse byte order and already shift left once
pcmpeqb xmm0, [rel xmm_cmp]