Teach getZeroExtendExpr and getSignExtendExpr to use trip-count
[llvm/msp430.git] / test / CodeGen / X86 / remat-constant.ll
blobd9ef6fe76d7d868eeceac7c1d85266511c59c600
1 ; RUN: llvm-as < %s | llc -march=x86-64 -relocation-model=static -aggressive-remat | grep xmm | count 2
3 declare void @bar() nounwind
5 @a = external constant float
7 declare void @qux(float %f) nounwind 
9 define void @foo() nounwind  {
10   %f = load float* @a
11   call void @bar()
12   call void @qux(float %f)
13   call void @qux(float %f)
14   ret void