risc-v

Definition

fmax (RISC-V)

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

fmax.s a, b, c

Equivalent C code:

a = max(b, c)