summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/2004-03-30-Select-Max.llx
blob: bd7ab47d1e617916b9879d06da6153e499fe02ac (plain)
1
2
3
4
5
6
7
; RUN: llvm-upgrade < %s | llvm-as | 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
}