1 2#include <asm_defs.h> 3 4 .text 5 6FUNCTION(_arch_exception_loop): 7arch_loop: 8 b arch_loop 9FUNCTION_END(_arch_exception_loop) 10 11/* The intention in this function in contrast with the previous is that by 12 * prototype, the compiler sets x0 and x1 to its parameters 13 * so when attaching we can track where it came from */ 14FUNCTION(_arch_exception_panic): 15arch_panic_loop: 16 b arch_panic_loop 17FUNCTION_END(_arch_exception_panic) 18