From 6fe0ccc7f3ed3c2a884c63021193dbfa153aa781 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Tue, 6 Oct 2015 18:24:35 +1100 Subject: [PATCH] exception_vectors.S: Use .Lnnn syntax for local labels, as noted by @foogod --- core/exception_vectors.S | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/exception_vectors.S b/core/exception_vectors.S index 0dba785..64c1919 100644 --- a/core/exception_vectors.S +++ b/core/exception_vectors.S @@ -501,8 +501,8 @@ UserExceptionHandler: rsync rsr a2, exccause /* Any UserException cause other than a level 1 interrupt is fatal */ - bnei a2, CAUSE_LVL1INT, .UserFailOtherExceptionCause -.UserHandleInterrupt: + bnei a2, CAUSE_LVL1INT, .LUserFailOtherExceptionCause +.LUserHandleInterrupt: rsil a0, 1 rsr a2, intenable rsr a3, interrupt @@ -513,7 +513,7 @@ UserExceptionHandler: j sdk__xt_int_exit # once finished, jumps to _xt_user_exit via stack .literal_position -.UserFailOtherExceptionCause: +.LUserFailOtherExceptionCause: break 1, 1 call0 sdk_user_fatal_exception_handler