forked from nrfconnect/sdk-trusted-firmware-m
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[nrf noup] platform: nordic_nrf: Use aliased default IRQ handlers
Currently we are generating dozens of default IRQ Handlers that each just spin. In sum, 256 bytes of IRQ handlers that do nothing. In this patch we save these bytes by using the alias attribute. Now there is only one default IRQ handler placed in flash and all the default IRQ handlers alias to it. I tried to place the duplicated default_tfm_IRQHandler in the common startup.c, but it did not work. I am not certain, but I think this is due to a problem with the way we link in TF-M. Signed-off-by: Sebastian Bøe <sebastian.boe@nordicsemi.no>
- Loading branch information
1 parent
cca1de1
commit 3dcb0c3
Showing
3 changed files
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters