risc-v

Definition

feq (RISC-V)

Compares the floating-point values in registers b and c for equality and stores the Boolean result in integer register a.

feq.s a, b, c

Equivalent C code:

a = (b == c)