diff options
author | Dimitris Papastamos <dimitris.papastamos@arm.com> | 2018-07-11 11:13:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-11 11:13:36 +0100 |
commit | 9a93d8ccff0abe225bfabbed7970075640f90de4 (patch) | |
tree | 012ea8874fdad102385555faf820562347c402e8 /include/common/asm_macros_common.S | |
parent | 89a793425b52c7f563eb07984fd79198471ce61c (diff) | |
parent | 4a98f0ef4c135ce7e1016a3c0fa3d75b6a54630b (diff) |
Merge pull request #1460 from robertovargas-arm/clang
Make TF compatible with Clang assembler and linker
Diffstat (limited to 'include/common/asm_macros_common.S')
-rw-r--r-- | include/common/asm_macros_common.S | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/common/asm_macros_common.S b/include/common/asm_macros_common.S index ca8c1ad0..081addcc 100644 --- a/include/common/asm_macros_common.S +++ b/include/common/asm_macros_common.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved. + * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ @@ -31,7 +31,6 @@ .cfi_sections .debug_frame .section .text.asm.\_name, "ax" .type \_name, %function - .func \_name /* * .cfi_startproc and .cfi_endproc are needed to output entries in * .debug_frame @@ -45,7 +44,6 @@ * This macro is used to mark the end of a function. */ .macro endfunc _name - .endfunc .cfi_endproc .size \_name, . - \_name .endm |