1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-17 05:31:32 +00:00
llvm-6502/test/Assembler/2002-04-07-InfConstant.llx
2006-12-02 04:23:10 +00:00

12 lines
209 B
Plaintext

; The output formater prints out 1.0e100 as Inf!
;
; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | llvm-as | llvm-dis
implementation
float "test"()
begin
%tmp = mul float 1.0e100, 1.0e1
ret float %tmp
end