(value: Value, class: RegClass)
| 376 | #[inline] |
| 377 | #[must_use] |
| 378 | pub fn regclass_def(value: Value, class: RegClass) -> Self { |
| 379 | Self::new(OperandKind::Def(value), OperandConstraint::Class(class)) |
| 380 | } |
| 381 | |
| 382 | /// Create an `Operand` that designates a definition of a `Value` that must |
| 383 | /// be in a register from the given register class. This value is written to |
nothing calls this directly
no outgoing calls
no test coverage detected