(value: Value, reg: PhysReg)
| 410 | #[inline] |
| 411 | #[must_use] |
| 412 | pub fn fixed_def(value: Value, reg: PhysReg) -> Self { |
| 413 | Self::new(OperandKind::Def(value), OperandConstraint::Fixed(reg)) |
| 414 | } |
| 415 | |
| 416 | /// Create an `Operand` that designates a definition of a `Value` that must |
| 417 | /// be in a specific register. This value is written to |
nothing calls this directly
no outgoing calls
no test coverage detected