aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/Hexagon/maxuw.ll
blob: 6ab204c35d7ec925bcd0898efc53654d1126dfde (plain)
1
2
3
4
5
6
7
8
9
; RUN: llc -mtriple=hexagon < %s | FileCheck %s
; CHECK: maxu

define i32 @f(i32 %src, i32 %maxval) nounwind readnone {
entry:
  %cmp = icmp ult i32 %maxval, %src
  %cond = select i1 %cmp, i32 %src, i32 %maxval
  ret i32 %cond
}