12 lines · plain
1; The output formatter prints out 1.0e100 as Inf!2;3; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s4; RUN: verify-uselistorder %s5 6; CHECK: fmul float 0x7FF0000000000000, 1.000000e+017define float @test() {8 %tmp = fmul float 0x7FF0000000000000, 1.000000e+01 ; <float> [#uses=1]9 ret float %tmp10}11 12