blob: 241618c531ab5c8dd3adcdff7c1f48701e27f739 [file] [log] [blame]
Dan Gohman37b34262007-09-17 14:49:27 +00001; RUN: llvm-as < %s | llc -march=x86-64 | grep -v cmp
2
3define i64 @foo(i64 %x) {
4 %t = icmp slt i64 %x, 1
5 %r = zext i1 %t to i64
6 ret i64 %r
7}