blob: 42a3c2a8020af1db103a5b2c25dd6b5bdaf72713 [file] [log] [blame]
Chris Lattner95405ee2009-07-08 00:49:35 +00001; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah | grep pcmpgtd
Chris Lattner08074e92009-07-07 22:51:09 +00002
Chris Lattner42005c02009-07-07 23:03:54 +00003
4define <4 x i32> @test2(<4 x i32> %A, <4 x i32> %B) nounwind {
5 %C = icmp sgt <4 x i32> %A, %B
6 %D = sext <4 x i1> %C to <4 x i32>
7 ret <4 x i32> %D
8}
9