blob: 8ca7450bf74193adb675adcd25e9ab1b882f5250 [file] [log] [blame]
Chris Lattner24823cc2002-04-07 07:58:25 +00001; The output formater prints out 1.0e100 as Inf!
2;
Misha Brukman14285c82003-09-15 20:02:53 +00003; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis
Chris Lattner24823cc2002-04-07 07:58:25 +00004
5implementation
6
7float "test"()
8begin
9 %tmp = mul float 1.0e100, 1.0e1
10 ret float %tmp
11end