br3392236: Don't treat \Space after \BackSlash as a sign for line continuation
[nasm.git] / test / floattest.asm
blob3c7ba8b0c3bed1cd33891a7c893f1c3167ea7748
1 ;Testname=optimized; Arguments=-Ox -felf -ofloattest.o; Files=stdout stderr floattest.o
3 ; nasm -O99 -f elf32 floattest.asm
4 ; ld -m elf_i386 -o floattest floattest.o -I/lib/ld-linux.so.2 -lc
6 global _start
7 extern printf
9 section .text
10 _start:
12 fld qword [num1]
13 fadd qword [num2]
14 sub esp, 8
15 fstp qword [esp]
16 push fmt
17 call printf
18 add esp, 4*3
20 mov eax, 1
21 xor ebx, ebx
22 int 80h
24 section .data
25 num1 dq 41.5
26 num2 dq 0.5
28 fmt db "%f", 10, 0