blob: c44d10ac5b5a63977602d9b6f1145add67f84fde [file] [log] [blame]
Chris Lattner3056b2c2010-03-14 22:31:16 +00001; RUN: llc < %s -march=x86 -mcpu=yonah | not grep {j\[lgbe\]}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
Chris Lattner3056b2c2010-03-14 22:31:16 +00003define i32 @max(i32 %A, i32 %B) nounwind {
Tanya Lattner348c6182008-03-25 04:26:08 +00004 %gt = icmp sgt i32 %A, %B ; <i1> [#uses=1]
5 %R = select i1 %gt, i32 %A, i32 %B ; <i32> [#uses=1]
6 ret i32 %R
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007}
Tanya Lattner348c6182008-03-25 04:26:08 +00008