Get the information needed by frontends producing Cranelift IR.
(&self)
| 481 | |
| 482 | /// Get the information needed by frontends producing Cranelift IR. |
| 483 | pub fn frontend_config(&self) -> TargetFrontendConfig { |
| 484 | TargetFrontendConfig { |
| 485 | default_call_conv: self.default_call_conv(), |
| 486 | pointer_width: self.pointer_width(), |
| 487 | page_size_align_log2: self.page_size_align_log2(), |
| 488 | } |
| 489 | } |
| 490 | } |
| 491 | |
| 492 | impl Debug for &dyn TargetIsa { |