1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
### Description Copy sign bit of a into value of b, and return the result as d. ### Syntax ``` copysign.type d, a, b; .type = { .f32, .f64 }; ``` ### Examples ``` copysign.f32 x, y, z; copysign.f64 A, B, C; ```