(value: Value, input_idx: usize)
| 429 | #[inline] |
| 430 | #[must_use] |
| 431 | pub fn reuse_def(value: Value, input_idx: usize) -> Self { |
| 432 | Self::new(OperandKind::Def(value), OperandConstraint::Reuse(input_idx)) |
| 433 | } |
| 434 | |
| 435 | /// Create an `Operand` that designates a definition of a `Value` that must |
| 436 | /// 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