Remember to update VirtRegLastUse when spilling without killing before a call.
[oota-llvm.git] / test / CodeGen / ARM / fpcmp_ueq.ll
1 ; RUN: llc < %s -march=arm | grep moveq 
2 ; RUN: llc < %s -march=arm -mattr=+vfp2 | grep movvs
3
4 define i32 @f7(float %a, float %b) {
5 entry:
6     %tmp = fcmp ueq float %a,%b
7     %retval = select i1 %tmp, i32 666, i32 42
8     ret i32 %retval
9 }
10