(
&mut self,
params: impl IntoIterator<Item = &'b Type, IntoIter: ExactSizeIterator>,
addr: B::Operand,
offset: ArchitectureSize,
)
| 2088 | } |
| 2089 | |
| 2090 | fn write_params_to_memory<'b>( |
| 2091 | &mut self, |
| 2092 | params: impl IntoIterator<Item = &'b Type, IntoIter: ExactSizeIterator>, |
| 2093 | addr: B::Operand, |
| 2094 | offset: ArchitectureSize, |
| 2095 | ) { |
| 2096 | self.write_fields_to_memory(params, addr, offset); |
| 2097 | } |
| 2098 | |
| 2099 | fn write_variant_arms_to_memory<'b>( |
| 2100 | &mut self, |
no test coverage detected