risc-v

Definition

fmv.x.w (RISC-V)

Moves the bit pattern of the floating-point value in register b to integer register a without changing the bits.

fmv.x.w a, b

Equivalent C code:

a = bitcast_int32(b)