Skip to main content

FcmltEmitter

Trait FcmltEmitter 

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

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

Required Methods§

Source

fn fcmlt(&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§