aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/2004-03-30-Select-Max.llx
blob: 292762a7eb2784cd45520d3b9957bcc8e97d5326 (plain)
1
2
3
4
5
6
7
; RUN: llvm-as < %s | llc -march=x86 | not grep 'j[lgbe]'

int %max(int %A, int %B) {
  %gt = setgt int %A, %B
  %R = select bool %gt, int %A, int %B
  ret int %R
}