Struct llvm_ir::instruction::FMul
source · pub struct FMul {
pub operand0: Operand,
pub operand1: Operand,
pub dest: Name,
pub debugloc: Option<DebugLoc>,
}
Expand description
Floating-point multiply. See LLVM 14 docs on the ‘fmul’ instruction
Fields§
§operand0: Operand
§operand1: Operand
§dest: Name
§debugloc: Option<DebugLoc>
Trait Implementations§
source§impl BinaryOp for FMul
impl BinaryOp for FMul
fn get_operand0(&self) -> &Operand
fn get_operand1(&self) -> &Operand
source§impl From<FMul> for Instruction
impl From<FMul> for Instruction
source§fn from(inst: FMul) -> Instruction
fn from(inst: FMul) -> Instruction
Converts to this type from the input type.
source§impl HasDebugLoc for FMul
impl HasDebugLoc for FMul
source§impl PartialEq<FMul> for FMul
impl PartialEq<FMul> for FMul
source§impl TryFrom<Instruction> for FMul
impl TryFrom<Instruction> for FMul
impl StructuralPartialEq for FMul
Auto Trait Implementations§
impl RefUnwindSafe for FMul
impl Send for FMul
impl Sync for FMul
impl Unpin for FMul
impl UnwindSafe for FMul
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more