nasm/test/floatize.asm
H. Peter Anvin c2df282092 Fix the handling of floating-point tokens in the preprocessor
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.
2007-10-24 15:29:51 -07:00

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