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

})