blob: 71837c94378c93ef5604f26ee94709129a8a7d7c [file] [log] [blame]
Chris Lattner24823cc2002-04-07 07:58:25 +00001; The output formater prints out 1.0e100 as Inf!
2;
Dan Gohmanfa6c7162009-04-27 03:05:26 +00003; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | grep 0x7FF0000000000000
Chris Lattner24823cc2002-04-07 07:58:25 +00004
Tanya Lattner6e9bcee2008-02-14 07:57:12 +00005define float @test() {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00006 %tmp = fmul float 0x7FF0000000000000, 1.000000e+01 ; <float> [#uses=1]
Tanya Lattner6e9bcee2008-02-14 07:57:12 +00007 ret float %tmp
8}
Chris Lattner24823cc2002-04-07 07:58:25 +00009