Now capable of rematerializing coalesced live intervals.
[oota-llvm.git] / test / CodeGen / X86 / constant-pool-remat-0.ll
1 ; RUN: llvm-as < %s | llc -march=x86-64 | grep LCPI | wc -l | grep 3
2 ; RUN: llvm-as < %s | llc -march=x86 | grep LCPI | wc -l | grep 3
3
4 declare float @qux(float %y)
5
6 define float @array(float %a) {
7   %n = mul float %a, 9.0
8   %m = call float @qux(float %n)
9   %o = mul float %m, 9.0
10   ret float %o
11 }