xref: /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/PowerPC/long-compare.ll (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
1; RUN: llc < %s -march=ppc32 | grep cntlzw
2; RUN: llc < %s -march=ppc32 | not grep xori
3; RUN: llc < %s -march=ppc32 | not grep "li "
4; RUN: llc < %s -march=ppc32 | not grep "mr "
5
6define i1 @test(i64 %x) {
7  %tmp = icmp ult i64 %x, 4294967296
8  ret i1 %tmp
9}
10