(value: Value, class: RegClass)
| 389 | #[inline] |
| 390 | #[must_use] |
| 391 | pub fn regclass_early_def(value: Value, class: RegClass) -> Self { |
| 392 | Self::new( |
| 393 | OperandKind::EarlyDef(value), |
| 394 | OperandConstraint::Class(class), |
| 395 | ) |
| 396 | } |
| 397 | |
| 398 | /// Create an `Operand` that designates a use of a `Value` that must be in a |
| 399 | /// specific register. This value is read by the instruction and may be |
nothing calls this directly
no outgoing calls
no test coverage detected