exception_vectors.S: Use .Lnnn syntax for local labels, as noted by @foogod

This commit is contained in:
Angus Gratton 2015-10-06 18:24:35 +11:00
parent d39b3f6bb6
commit 0d35c0c02d

View file

@ -501,8 +501,8 @@ UserExceptionHandler:
rsync rsync
rsr a2, exccause rsr a2, exccause
/* Any UserException cause other than a level 1 interrupt is fatal */ /* Any UserException cause other than a level 1 interrupt is fatal */
bnei a2, CAUSE_LVL1INT, .UserFailOtherExceptionCause bnei a2, CAUSE_LVL1INT, .LUserFailOtherExceptionCause
.UserHandleInterrupt: .LUserHandleInterrupt:
rsil a0, 1 rsil a0, 1
rsr a2, intenable rsr a2, intenable
rsr a3, interrupt rsr a3, interrupt
@ -513,7 +513,7 @@ UserExceptionHandler:
j sdk__xt_int_exit # once finished, jumps to _xt_user_exit via stack j sdk__xt_int_exit # once finished, jumps to _xt_user_exit via stack
.literal_position .literal_position
.UserFailOtherExceptionCause: .LUserFailOtherExceptionCause:
break 1, 1 break 1, 1
call0 sdk_user_fatal_exception_handler call0 sdk_user_fatal_exception_handler