cpu/x86/sipi_vector.S: Use correct op suffix

clang wont compile `cmp` asm opcode because it's ambiguous,
use the correct op suffix `cmpl`

Change-Id: I82da5a9065b382e182dc7d502c7dca2fc717543b
Signed-off-by: Damien Zammit <damien@zamaudio.com>
Reviewed-on: https://review.coreboot.org/21359
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Damien Zammit 2017-09-02 20:30:39 +10:00 committed by Martin Roth
parent 590cfc5d63
commit 693315160e
1 changed files with 2 additions and 2 deletions

View File

@ -132,7 +132,7 @@ _start:
jnz microcode_done
/* Determine if parallel microcode loading is allowed. */
cmp $0xffffffff, microcode_lock
cmpl $0xffffffff, microcode_lock
je load_microcode
/* Protect microcode loading. */
@ -153,7 +153,7 @@ load_microcode:
popa
/* Unconditionally unlock microcode loading. */
cmp $0xffffffff, microcode_lock
cmpl $0xffffffff, microcode_lock
je microcode_done
xor %eax, %eax