(&mut self, n: u64)
| 337 | } |
| 338 | |
| 339 | fn u64_bswap64(&mut self, n: u64) -> u64 { |
| 340 | n.swap_bytes() |
| 341 | } |
| 342 | |
| 343 | fn ieee128_constant_extractor(&mut self, n: Constant) -> Option<Ieee128> { |
| 344 | self.ctx.func.dfg.constants.get(n).try_into().ok() |
nothing calls this directly
no test coverage detected