diff options
author | Roberto Vargas <roberto.vargas@arm.com> | 2017-11-02 16:36:51 +0000 |
---|---|---|
committer | Roberto Vargas <roberto.vargas@arm.com> | 2018-01-18 09:57:16 +0000 |
commit | d1f7292e43c89c807e924ea5f13625de3f46718d (patch) | |
tree | 61c835bbf105d7e56ad6aed55a507e125955ed19 /include | |
parent | 81528dbcf12882fae1d9a6e43b17f8e2abce32d9 (diff) | |
download | platform_external_arm-trusted-firmware-d1f7292e43c89c807e924ea5f13625de3f46718d.tar.gz platform_external_arm-trusted-firmware-d1f7292e43c89c807e924ea5f13625de3f46718d.tar.bz2 platform_external_arm-trusted-firmware-d1f7292e43c89c807e924ea5f13625de3f46718d.zip |
Mark functions defined in assembly files
This patch change the name of the section containing the functions
defined in assembly files from text.* to text.asm.*. This change
makes possible to select in the linker script the functions
defined in those files.
Change-Id: If35e44ef1b43ffd951dfac5e052db75d7198e2e0
Signed-off-by: Roberto Vargas <roberto.vargas@arm.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/common/asm_macros_common.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/common/asm_macros_common.S b/include/common/asm_macros_common.S index 6a02e18ee..ca8c1ad0f 100644 --- a/include/common/asm_macros_common.S +++ b/include/common/asm_macros_common.S @@ -29,7 +29,7 @@ * debugging experience. */ .cfi_sections .debug_frame - .section .text.\_name, "ax" + .section .text.asm.\_name, "ax" .type \_name, %function .func \_name /* |