Struct llvm_ir::instruction::Freeze
source · pub struct Freeze {
pub operand: Operand,
pub dest: Name,
pub debugloc: Option<DebugLoc>,
}
Expand description
Stop the propagation of undef
or poison
values.
See LLVM 14 docs on the ‘freeze’ instruction
Fields§
§operand: Operand
§dest: Name
§debugloc: Option<DebugLoc>
Trait Implementations§
source§impl From<Freeze> for Instruction
impl From<Freeze> for Instruction
source§fn from(inst: Freeze) -> Instruction
fn from(inst: Freeze) -> Instruction
Converts to this type from the input type.
source§impl HasDebugLoc for Freeze
impl HasDebugLoc for Freeze
source§impl PartialEq<Freeze> for Freeze
impl PartialEq<Freeze> for Freeze
source§impl TryFrom<Instruction> for Freeze
impl TryFrom<Instruction> for Freeze
impl StructuralPartialEq for Freeze
Auto Trait Implementations§
impl RefUnwindSafe for Freeze
impl Send for Freeze
impl Sync for Freeze
impl Unpin for Freeze
impl UnwindSafe for Freeze
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