aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/vmaxu_vv.h
blob: 4e6868d19e2374114726bae7fe38ac47bca5ad7d (plain)
1
2
3
4
5
6
7
8
9
// vmaxu.vv vd, vs2, vs1, vm   # Vector-vector
VI_VV_ULOOP
({
  if (vs1 >= vs2) {
    vd = vs1;
  } else {
    vd = vs2;
  }
})