[ASM] Fixed ".double" macro in asm.inc.

GAS uses ".double" symbol for declaring floating-point constants and
".quad" symbol for declaring 64-bit numbers.
This is not compatible with our macro for MASM and introduces bugs.
Now 64-bit constants are supposed to be declared using ".quad" macro.
This commit is contained in:
Victor Perevertkin 2018-07-15 18:49:49 +03:00 committed by Hermès BÉLUSCA - MAÏTO
parent 4ffa0a2e55
commit 2ae1675208
3 changed files with 10 additions and 6 deletions

View file

@ -136,10 +136,14 @@ ENDM
dd args
ENDM
.double MACRO args:VARARG
.quad MACRO args:VARARG
dq args
ENDM
.double MACRO args:VARARG
real8 args
ENDM
.org MACRO value
ORG value
ENDM