blob: c44d10ac5b5a63977602d9b6f1145add67f84fde [file] [log] [blame]
Chris Lattner1db570d2010-03-14 22:31:16 +00001; RUN: llc < %s -march=x86 -mcpu=yonah | not grep {j\[lgbe\]}
Chris Lattner51926762004-03-30 22:36:52 +00002
Chris Lattner1db570d2010-03-14 22:31:16 +00003define i32 @max(i32 %A, i32 %B) nounwind {
Tanya Lattner6f729d62008-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
Chris Lattner51926762004-03-30 22:36:52 +00007}
Tanya Lattner6f729d62008-03-25 04:26:08 +00008