risc-v

Definition

fnmsub (RISC-V)

Computes the negated fused multiply-subtract of the floating-point values in registers b, c, and d, and stores the result in register a.

fnmsub.s a, b, c, d

Equivalent C code:

a = -((b * c) - d)