Struct llvm_ir::instruction::FAdd
source · [−]pub struct FAdd {
pub operand0: Operand,
pub operand1: Operand,
pub dest: Name,
pub debugloc: Option<DebugLoc>,
}
Expand description
Floating-point add. See LLVM 14 docs on the ‘fadd’ instruction
Fields
operand0: Operand
operand1: Operand
dest: Name
debugloc: Option<DebugLoc>
Trait Implementations
sourceimpl BinaryOp for FAdd
impl BinaryOp for FAdd
fn get_operand0(&self) -> &Operand
fn get_operand1(&self) -> &Operand
sourceimpl From<FAdd> for Instruction
impl From<FAdd> for Instruction
sourcefn from(inst: FAdd) -> Instruction
fn from(inst: FAdd) -> Instruction
Converts to this type from the input type.
sourceimpl HasDebugLoc for FAdd
impl HasDebugLoc for FAdd
sourcefn get_debug_loc(&self) -> &Option<DebugLoc>
fn get_debug_loc(&self) -> &Option<DebugLoc>
Returns the DebugLoc
associated with the given Instruction
,
Terminator
, GlobalVariable
, or Function
; or None
if it doesn’t
have a DebugLoc
. Read more
sourceimpl PartialEq<FAdd> for FAdd
impl PartialEq<FAdd> for FAdd
sourceimpl TryFrom<Instruction> for FAdd
impl TryFrom<Instruction> for FAdd
impl StructuralPartialEq for FAdd
Auto Trait Implementations
impl RefUnwindSafe for FAdd
impl Send for FAdd
impl Sync for FAdd
impl Unpin for FAdd
impl UnwindSafe for FAdd
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more