risc-v

Definition

fsgnjn (RISC-V)

Stores in register a the value of register b with the negated sign bit of register c.

fsgnjn.s a, b, c

Equivalent C code:

a = copy_negated_sign(b, c)