aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/vmin_vx.h
blob: 3291776d05a71bebd4eb5e5c7682ab3d33164711 (plain)
1
2
3
4
5
6
7
8
9
10
11
// vminx.vx vd, vs2, rs1, vm   # vector-scalar
VI_VX_LOOP
({
  if (rs1 <= vs2) {
    vd = rs1;
  } else {
    vd = vs2;
  }


})