Closed dimakuv closed 4 months ago
Newer nasm (2.17rc0) complains about ambiguous operand size on asm like push $123. That's because the default operand size is 32 bits even in 64-bit mode. Thus, we need an explicit operand-size suffix: pushq.
push $123
pushq
Build with new nasm.
This change is
Description of the changes
Newer nasm (2.17rc0) complains about ambiguous operand size on asm like
push $123
. That's because the default operand size is 32 bits even in 64-bit mode. Thus, we need an explicit operand-size suffix:pushq
.How to test this PR?
Build with new nasm.
This change is