(&mut self, code: TrapCode)
| 1231 | } |
| 1232 | |
| 1233 | fn trap(&mut self, code: TrapCode) -> Result<()> { |
| 1234 | self.with_aligned_sp(|masm| { |
| 1235 | masm.asm.udf(code); |
| 1236 | Ok(()) |
| 1237 | }) |
| 1238 | } |
| 1239 | |
| 1240 | fn trapz(&mut self, src: Reg, code: TrapCode) -> Result<()> { |
| 1241 | self.with_aligned_sp(|masm| { |
nothing calls this directly
no test coverage detected