blob: afce5b8ac4842ac76c50c418bda97b0055c60b94 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; The output formater prints out 1.0e100 as Inf!
2;
3; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | llvm-as | llvm-dis
4
5implementation
6
7float "test"()
8begin
Dale Johannesend727a2b2007-09-05 17:50:36 +00009 %tmp = mul float 0x7FF0000000000000, 1.0e1
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010 ret float %tmp
11end