Skip to main content

FmaxEmitter

Trait FmaxEmitter 

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

Emits the FMAX instruction. Assembly forms: FMAX SD, SN, SM; FMAX DD, DN, DM; FMAX VD.2S, VN.2S, VM.2S; FMAX VD.4S, VN.4S, VM.4S (and related forms). Operands: rd, rn, rm.

Required Methods§

Source

fn fmax(&mut self, rd: T0, rn: T1, rm: T2)

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§