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