mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-02-23 17:29:23 +08:00
Correct the handling of floating-point tokens in the preprocessor. The preprocessor scanner and the main scanner really are painfully divergent for no good reason.
17 lines
325 B
NASM
17 lines
325 B
NASM
%assign x13 13+26
|
|
%assign f16 __float16__(1.6e-7)
|
|
%assign f32 __float32__(1.6e-7)
|
|
%assign f64 __float64__(1.6e-7)
|
|
%assign f80m __float80m__(1.6e-7)
|
|
%assign f80e __float80e__(1.6e-7)
|
|
%assign f128l __float128l__(1.6e-7)
|
|
%assign f128h __float128h__(1.6e-7)
|
|
|
|
dw f16
|
|
dd f32
|
|
dq f64
|
|
dq f80m
|
|
dw f80e
|
|
dq f128l
|
|
dq f128h
|