Struct llvm_ir::instruction::FRem
source · [−]pub struct FRem {
pub operand0: Operand,
pub operand1: Operand,
pub dest: Name,
pub debugloc: Option<DebugLoc>,
}
Expand description
Floating-point remainder. See LLVM 14 docs on the ‘frem’ instruction
Fields
operand0: Operand
operand1: Operand
dest: Name
debugloc: Option<DebugLoc>
Trait Implementations
sourceimpl BinaryOp for FRem
impl BinaryOp for FRem
fn get_operand0(&self) -> &Operand
fn get_operand1(&self) -> &Operand
sourceimpl From<FRem> for Instruction
impl From<FRem> for Instruction
sourcefn from(inst: FRem) -> Instruction
fn from(inst: FRem) -> Instruction
Converts to this type from the input type.
sourceimpl HasDebugLoc for FRem
impl HasDebugLoc for FRem
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<FRem> for FRem
impl PartialEq<FRem> for FRem
sourceimpl TryFrom<Instruction> for FRem
impl TryFrom<Instruction> for FRem
impl StructuralPartialEq for FRem
Auto Trait Implementations
impl RefUnwindSafe for FRem
impl Send for FRem
impl Sync for FRem
impl Unpin for FRem
impl UnwindSafe for FRem
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