Skip to main content

FnegEmitter

Trait FnegEmitter 

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

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

Required Methods§

Source

fn fneg(&mut self, rd: T0, rn: T1)

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§