Fix a bug in the DAGCombiner's handling of multiple linked
[oota-llvm.git] / test / CodeGen / X86 / 2007-01-08-InstrSched.ll
1 ; PR1075
2 ; RUN: llvm-as < %s | llc -mtriple=x86_64-apple-darwin | \
3 ; RUN:   %prcontext {mulss      LCPI1_3} 1 | grep mulss | count 1
4
5 define float @foo(float %x) {
6     %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
13     ret float %tmp14
14 }