Returns the pointer width of the ISA in bytes.
(&self)
| 217 | |
| 218 | /// Returns the pointer width of the ISA in bytes. |
| 219 | fn pointer_bytes(&self) -> u8 { |
| 220 | let width = self.triple().pointer_width().unwrap(); |
| 221 | width.bytes() |
| 222 | } |
| 223 | |
| 224 | /// The log2 of the target's page size and alignment. |
| 225 | /// |
no test coverage detected