Get the width of pointers on this target, in units of bits.
(self)
| 269 | |
| 270 | /// Get the width of pointers on this target, in units of bits. |
| 271 | pub fn pointer_bits(self) -> u8 { |
| 272 | self.pointer_width.bits() |
| 273 | } |
| 274 | |
| 275 | /// Get the width of pointers on this target, in units of bytes. |
| 276 | pub fn pointer_bytes(self) -> u8 { |
no test coverage detected