pub trait FcselEmitter<T0, T1, T2, T3> {
// Required method
fn fcsel(&mut self, rd: T0, rn: T1, rm: T2, condition: T3);
}Expand description
Emits the FCSEL instruction.
Assembly forms: FCSEL SD, SN, SM, #COND; FCSEL DD, DN, DM, #COND; FCSEL HD, HN, HM, #COND.
Operands: rd, rn, rm, condition.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".