diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2022-01-23 18:51:56 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2022-01-23 18:52:04 -0500 |
commit | 2495d1813239cd8d888c160b08c23500ba4759a7 (patch) | |
tree | 722b48dad6b8798f4a4d04314386b4b2a383d1da /asm/macros/function.inc | |
parent | 9f2b6ab2f2b7d5937342cef3166a652d882f1d94 (diff) |
Add missing :req, remove old macros
Diffstat (limited to 'asm/macros/function.inc')
-rw-r--r-- | asm/macros/function.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/asm/macros/function.inc b/asm/macros/function.inc index b109595df..0f4e6720c 100644 --- a/asm/macros/function.inc +++ b/asm/macros/function.inc @@ -1,15 +1,15 @@ - .macro arm_func_start name + .macro arm_func_start name:req .align 2, 0 .global \name .arm .type \name, %function .endm - .macro arm_func_end name + .macro arm_func_end name:req .size \name, .-\name .endm - .macro thumb_func_start name + .macro thumb_func_start name:req .align 2, 0 .global \name .thumb @@ -17,13 +17,13 @@ .type \name, %function .endm - .macro non_word_aligned_thumb_func_start name + .macro non_word_aligned_thumb_func_start name:req .global \name .thumb .thumb_func .type \name, %function .endm - .macro thumb_func_end name + .macro thumb_func_end name:req .size \name, .-\name .endm |