risc-v

Definition

flt (RISC-V)

Compares whether the floating-point value in register b is less than the value in register c and stores the Boolean result in integer register a.

flt.s a, b, c

Equivalent C code:

a = (b < c)