Skip to content

Commit 8611557

Browse files
committed
portable: also fix IAR ARM_CM33 non-secure portasm.s stray URL
The CM33 non-secure portasm.s exists at two identical paths, and the previous commit only covered the ARMv8M one. The legacy path portable/IAR/ARM_CM33/non_secure/portasm.s is the file referenced in #1480, so it must be fixed as well - otherwise the reported build failure remains.
1 parent 2b4dfaf commit 8611557

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

portable/IAR/ARM_CM33/non_secure/portasm.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ PendSV_Handler:
473473
msr PAC_KEY_P_0, r6
474474
clrm {r3-r6} /* Clear r3-r6. */
475475
#endif /* configENABLE_PAC */
476-
ldmia r2!, {r0, r3, lr} http://files.iar.com/ftp/pub/box/bxarm-9.60.3.deb/* Read from stack - r0 = xSecureContext, r3 = PSPLIM and LR restored. */
476+
ldmia r2!, {r0, r3, lr} /* Read from stack - r0 = xSecureContext, r3 = PSPLIM and LR restored. */
477477
msr psplim, r3 /* Restore the PSPLIM register value for the task. */
478478
ldr r3, =xSecureContext /* Read the location of xSecureContext i.e. &( xSecureContext ). */
479479
str r0, [r3] /* Restore the task's xSecureContext. */

0 commit comments

Comments
 (0)