23 lines · plain
1; PR10752; RUN: llc < %s -mcpu=generic -mtriple=x86_64-apple-darwin -O3 | FileCheck %s3 4define float @foo(float %x) nounwind {5 %tmp1 = fmul float %x, 3.000000e+006 %tmp3 = fmul float %x, 5.000000e+007 %tmp5 = fmul float %x, 7.000000e+008 %tmp7 = fmul float %x, 1.100000e+019 %tmp10 = fadd float %tmp1, %tmp310 %tmp12 = fadd float %tmp10, %tmp511 %tmp14 = fadd float %tmp12, %tmp712 ret float %tmp1413 14; CHECK: mulss15; CHECK: mulss16; CHECK: addss17; CHECK: mulss18; CHECK: addss19; CHECK: mulss20; CHECK: addss21; CHECK: ret22}23