mirror of
https://github.com/memtest86plus/memtest86plus.git
synced 2024-11-23 08:26:23 -06:00
Fix assembler warning about unsized bts instruction.
This commit is contained in:
parent
dcac527068
commit
7acb81e302
@ -80,7 +80,7 @@ startup:
|
||||
# need to take the mutex to protect our use of the stack.
|
||||
|
||||
leal (startup_stack_mutex - startup)(%edi), %eax
|
||||
0: lock bts $0, (%eax)
|
||||
0: lock btsl $0, (%eax)
|
||||
jc 0b
|
||||
|
||||
leal (startup_stack_top - startup)(%edi), %esp
|
||||
|
@ -145,7 +145,7 @@ startup:
|
||||
# Use the startup stack until we pick the correct one. We
|
||||
# need to take a mutex to protect our use of the stack.
|
||||
|
||||
0: lock bts $0, startup_stack_mutex(%rip)
|
||||
0: lock btsl $0, startup_stack_mutex(%rip)
|
||||
jc 0b
|
||||
leaq startup_stack_top(%rip), %rsp
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user