Fix ctlz and cttz. llvm definition requires them to return number of bits in of the...
[oota-llvm.git] / test / CodeGen / X86 / cmp1.ll
1 ; RUN: llvm-as < %s | llc -march=x86-64 | grep -v cmp
2
3 define i64 @foo(i64 %x) {
4   %t = icmp slt i64 %x, 1
5   %r = zext i1 %t to i64
6   ret i64 %r
7 }