blob: 3b365f35cb22104c2585338478802744490e79c9 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; PR1075
2; RUN: llvm-as < %s | llc -mtriple=x86_64-apple-darwin | \
Evan Cheng477013c2007-10-14 05:57:21 +00003; RUN: %prcontext {mulss LCPI1_3} 1 | grep mulss | count 1
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004
5define float @foo(float %x) {
Dan Gohman7ce405e2009-06-04 22:49:04 +00006 %tmp1 = fmul float %x, 3.000000e+00
7 %tmp3 = fmul float %x, 5.000000e+00
8 %tmp5 = fmul float %x, 7.000000e+00
9 %tmp7 = fmul float %x, 1.100000e+01
10 %tmp10 = fadd float %tmp1, %tmp3
11 %tmp12 = fadd float %tmp10, %tmp5
12 %tmp14 = fadd float %tmp12, %tmp7
Dan Gohmanf17a25c2007-07-18 16:29:46 +000013 ret float %tmp14
14}