Sandrine Bailleux | 3cd87d7 | 2018-10-09 11:12:55 +0200 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2018, Arm Limited. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | */ | ||||
6 | |||||
7 | /* | ||||
8 | * This macro is used to create a function label. | ||||
9 | */ | ||||
10 | .macro func _name | ||||
11 | .type \_name, %function | ||||
12 | .func \_name | ||||
13 | \_name: | ||||
14 | .endm | ||||
15 | |||||
16 | /* | ||||
17 | * This macro is used to mark the end of a function. | ||||
18 | */ | ||||
19 | .macro endfunc _name | ||||
20 | .endfunc | ||||
21 | .size \_name, . - \_name | ||||
22 | .endm |