| 84 | /// Expanded form of `AllocationUnit` as an enum. |
| 85 | #[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)] |
| 86 | pub(crate) enum AllocationUnitKind { |
| 87 | Reg(RegUnit), |
| 88 | SpillSlot(SpillSlot), |
| 89 | } |
| 90 | |
| 91 | impl fmt::Debug for AllocationUnit { |
| 92 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected