blob: 7b907250e1fc275ac366a378ec5d19de12730746 [file] [log] [blame]
Reid Spencerc58ef012007-04-15 21:17:45 +00001; 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 }
Chris Lattner511e1d12007-02-09 04:49:46 +00005
6define i1 @test(i64 %x) {
7 %tmp = icmp ult i64 %x, 4294967296
8 ret i1 %tmp
9}