risc-v Definition fsgnj (RISC-V) Stores in register a the value of register b with the sign bit copied from register c. fsgnj.s a, b, c Equivalent C code: a = copy_sign(b, c)