view test/CodeGen/Hexagon/minud.ll @ 128:c347d3398279 default tip

fix
author mir3636
date Wed, 06 Dec 2017 14:37:17 +0900
parents afa8332a0e37
children
line wrap: on
line source

; RUN: llc -march=hexagon < %s | FileCheck %s
; CHECK: minu

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