new testcase
[oota-llvm.git] / test / CodeGen / PowerPC / long-compare.ll
1 ; RUN: llvm-as < %s | llc -march=ppc32 | grep cntlzw 
2 ; RUN: llvm-as < %s | llc -march=ppc32 | not grep xori 
3 ; RUN: llvm-as < %s | llc -march=ppc32 | not grep {li }
4 ; RUN: llvm-as < %s | llc -march=ppc32 | not grep {mr }
5
6 define i1 @test(i64 %x) {
7   %tmp = icmp ult i64 %x, 4294967296
8   ret i1 %tmp
9 }