Author Topic: Strange warning  (Read 5037 times)

Offline PitchPitch

  • New Member
  • Posts: 1
Strange warning
« on: January 04, 2018, 07:07:41 PM »
Hi everyone !

I have a strange warning with NASM (64 bit).

NASM say "warning: signed dword value exceeds bounds [-w+number-overflow]" with this instruction :

Code: [Select]
and rcx, 0xFFFF_FFFF
and this is my command line :

Code: [Select]
nasm -felf64 File.asm -Ox -Wall -o Output.o
How can I fix it ?

Thank you !