| 53 | /// block-to-block liveness. |
| 54 | #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] |
| 55 | pub struct MovePosition { |
| 56 | /// Bit-pack in 32 bits. |
| 57 | /// |
| 58 | /// inst:31 pos:1 |
| 59 | bits: u32, |
| 60 | } |
| 61 | |
| 62 | impl fmt::Display for MovePosition { |
| 63 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected