(self, name: &str)
| 850 | bool_arg!(are_argument_registers_used_for_var_args); |
| 851 | |
| 852 | pub fn register(self, name: &str) -> Ref<CoreCallingConvention> { |
| 853 | let arch = self.arch_handle.clone(); |
| 854 | register_calling_convention(arch.borrow(), name, self) |
| 855 | } |
| 856 | } |
| 857 | |
| 858 | impl<A: Architecture> CallingConvention for ConventionBuilder<A> { |
nothing calls this directly
no test coverage detected