aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/vnmsub_vx.h
blob: 2e00d22e4a09c21ff7d8f358cf50595ebe668d92 (plain)
1
2
3
4
5
// vnmsub.vx: vd[i] = -(vd[i] * x[rs1]) + vs2[i]
VI_VX_LOOP
({
  vd = -(vd * rs1) + vs2;
})