Skip to main content

FcmleEmitter

Trait FcmleEmitter 

Source
pub trait FcmleEmitter<T0, T1, T2> {
    // Required method
    fn fcmle(&mut self, rd: T0, rn: T1, operand_3: T2);
}
Expand description

Emits the FCMLE instruction. Assembly forms: FCMLE SD, SN, #0; FCMLE DD, DN, #0; FCMLE VD.2S, VN.2S, #0; FCMLE VD.4S, VN.4S, #0 (and related forms). Operands: rd, rn, operand_3.

Required Methods§

Source

fn fcmle(&mut self, rd: T0, rn: T1, operand_3: T2)

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§