blob: 292762a7eb2784cd45520d3b9957bcc8e97d5326 [file] [log] [blame]
Chris Lattner51926762004-03-30 22:36:52 +00001; RUN: llvm-as < %s | llc -march=x86 | not grep 'j[lgbe]'
2
3int %max(int %A, int %B) {
4 %gt = setgt int %A, %B
5 %R = select bool %gt, int %A, int %B
6 ret int %R
7}