Use the llvm-upgrade program to upgrade llvm assembly.
[oota-llvm.git] / test / CodeGen / PowerPC / vec_br_cmp.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 -mcpu=g5 | grep vcmpeqfp. &&
2 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 -mcpu=g5 | not grep mfcr
3
4 ; A predicate compare used immediately by a branch should not generate an mfcr.
5
6 void %test(<4 x float>* %A, <4 x float>* %B) {
7         %tmp = load <4 x float>* %A
8         %tmp3 = load <4 x float>* %B
9         %tmp = tail call int %llvm.ppc.altivec.vcmpeqfp.p( int 1, <4 x float> %tmp, <4 x float> %tmp3 )
10         %tmp = seteq int %tmp, 0
11         br bool %tmp, label %cond_true, label %UnifiedReturnBlock
12
13 cond_true:
14         store <4 x float> zeroinitializer, <4 x float>* %B
15         ret void
16
17 UnifiedReturnBlock:
18         ret void
19 }
20
21 declare int %llvm.ppc.altivec.vcmpeqfp.p(int, <4 x float>, <4 x float>)
22