risc-v

Definition

fmin (RISC-V)

Stores the smaller of the floating-point values in registers b and c in register a.

fmin.s a, b, c

Equivalent C code:

a = min(b, c)