diff options
author | Eugene Cohen <eugene@hp.com> | 2015-12-03 20:28:02 +0000 |
---|---|---|
committer | abiesheuvel <abiesheuvel@Edk2> | 2015-12-03 20:28:02 +0000 |
commit | efda17751344965c7f51cbd0660ed6a59e2de855 (patch) | |
tree | a2d80f66fe6494c0971e484fe24454ee6db36840 /ArmPkg/Library/CompilerIntrinsicsLib/Arm/switch.asm | |
parent | e04671e81a7fe842f640a926171048e5524b46e0 (diff) | |
download | edk2-platforms-efda17751344965c7f51cbd0660ed6a59e2de855.tar.xz |
ArmPkg: update RVCT assembly functions to use new RVCT_ASM_EXPORT macro
This has the effect of splitting assembly functions into their own sections
so the linker can remove unused ones to save space.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Eugene Cohen <eugene@hp.com>
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@gmail.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19109 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPkg/Library/CompilerIntrinsicsLib/Arm/switch.asm')
-rw-r--r-- | ArmPkg/Library/CompilerIntrinsicsLib/Arm/switch.asm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ArmPkg/Library/CompilerIntrinsicsLib/Arm/switch.asm b/ArmPkg/Library/CompilerIntrinsicsLib/Arm/switch.asm index e09c90cda4..f23aa42d44 100644 --- a/ArmPkg/Library/CompilerIntrinsicsLib/Arm/switch.asm +++ b/ArmPkg/Library/CompilerIntrinsicsLib/Arm/switch.asm @@ -14,11 +14,10 @@ - EXPORT __ARM_switch8
- AREA ArmSwitch, CODE, READONLY
+ INCLUDE AsmMacroExport.inc
-__ARM_switch8
+ RVCT_ASM_EXPORT __ARM_switch8
LDRB r12,[lr,#-1]
CMP r3,r12
LDRBCC r3,[lr,r3]
|