| 47 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] |
| 48 | #[cfg_attr(feature = "enable-serde", derive(Serialize, Deserialize))] |
| 49 | pub struct Reg(u32); |
| 50 | |
| 51 | const REG_SPILLSLOT_BIT: u32 = 0x8000_0000; |
| 52 | const REG_SPILLSLOT_MASK: u32 = !REG_SPILLSLOT_BIT; |
no outgoing calls
no test coverage detected