(stack_frame: InterruptStackFrame)
| 240 | panic!("EXCEPTION: alignment_check{:#?}", stack_frame); |
| 241 | } |
| 242 | extern "x86-interrupt" fn invalid_opcode(stack_frame: InterruptStackFrame) { |
| 243 | panic!("EXCEPTION: invalid_opcode{:#?}", stack_frame); |
| 244 | } |
| 245 | extern "x86-interrupt" fn bound_range_exceeded(stack_frame: InterruptStackFrame) { |
| 246 | panic!("EXCEPTION: bound_range_exceeded{:#?}", stack_frame); |
| 247 | } |
nothing calls this directly
no outgoing calls
no test coverage detected