(value: Value, reg: PhysReg)
| 419 | #[inline] |
| 420 | #[must_use] |
| 421 | pub fn fixed_early_def(value: Value, reg: PhysReg) -> Self { |
| 422 | Self::new(OperandKind::EarlyDef(value), OperandConstraint::Fixed(reg)) |
| 423 | } |
| 424 | |
| 425 | /// Create an `Operand` that designates a definition of a `Value` that must |
| 426 | /// be in the same register as an input to the instruction. The input is |
nothing calls this directly
no outgoing calls
no test coverage detected