Create a new empty `Signature` with the default calling convention for the `TargetIsa`, to which parameter and return types can be added for declaring a function to be called by this `Module`.
(&self)
| 863 | /// the `TargetIsa`, to which parameter and return types can be added for |
| 864 | /// declaring a function to be called by this `Module`. |
| 865 | fn make_signature(&self) -> ir::Signature { |
| 866 | ir::Signature::new(self.isa().default_call_conv()) |
| 867 | } |
| 868 | |
| 869 | /// Clear the given `Signature` and reset for use with a new function. |
| 870 | /// |
nothing calls this directly
no test coverage detected