Get the default calling convention of this target.
(&self)
| 439 | impl<'a> dyn TargetIsa + 'a { |
| 440 | /// Get the default calling convention of this target. |
| 441 | pub fn default_call_conv(&self) -> CallConv { |
| 442 | CallConv::triple_default(self.triple()) |
| 443 | } |
| 444 | |
| 445 | /// Get the endianness of this ISA. |
| 446 | pub fn endianness(&self) -> ir::Endianness { |