Skip to main content

CmgeEmitter

Trait CmgeEmitter 

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

Emits the CMGE instruction. Assembly forms: CMGE DD, DN, DM; CMGE DD, DN, #0; CMGE VD.T, VN.T, VM.T; CMGE VD.T, VN.T, #0 (and related forms). Operands: rd, rn, rm_or_operand_3.

Required Methods§

Source

fn cmge(&mut self, rd: T0, rn: T1, rm_or_operand_3: T2)

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§