pub trait FsubrEmitter<T0, T1> {
// Required method
fn fsubr(&mut self, lhs: T0, rhs: T1);
}Expand description
Emits FSUBR.
Assembly forms: fsubr m32fp, fsubr m64fp, fsubr st(0), st(i).
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".