Get the pointer type of this target.
(self)
| 264 | impl TargetFrontendConfig { |
| 265 | /// Get the pointer type of this target. |
| 266 | pub fn pointer_type(self) -> ir::Type { |
| 267 | ir::Type::int(self.pointer_bits() as u16).unwrap() |
| 268 | } |
| 269 | |
| 270 | /// Get the width of pointers on this target, in units of bits. |
| 271 | pub fn pointer_bits(self) -> u8 { |