(value: Value, reg: PhysReg)
| 401 | #[inline] |
| 402 | #[must_use] |
| 403 | pub fn fixed_use(value: Value, reg: PhysReg) -> Self { |
| 404 | Self::new(OperandKind::Use(value), OperandConstraint::Fixed(reg)) |
| 405 | } |
| 406 | |
| 407 | /// Create an `Operand` that designates a definition of a `Value` that must |
| 408 | /// be in a specific register. This value is written to by the instruction |