blob: d02afba2d4f38b67468d7b74b3c0cd140c33865f [file] [log] [blame]
Sandrine Bailleux3cd87d72018-10-09 11:12:55 +02001/*
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