aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/vnmsub_vv.h
blob: 37f82286c42c759cf927ee253776930d9778ed22 (plain)
1
2
3
4
5
// vnmsub.vv: vd[i] = -(vd[i] * vs1[i]) + vs2[i]
VI_VV_LOOP
({
  vd = -(vd * vs1) + vs2;
})