diff options
Diffstat (limited to 'asm/macros/function.inc')
-rw-r--r-- | asm/macros/function.inc | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/asm/macros/function.inc b/asm/macros/function.inc deleted file mode 100644 index 6b9e5f40..00000000 --- a/asm/macros/function.inc +++ /dev/null @@ -1,24 +0,0 @@ - .macro arm_func_start name - .balign 4, 0 - .global \name - .arm - .endm - - .macro arm_func_end name - .size \name, .-\name - .endm - - .macro thumb_func_start name - .balign 4, 0 - .global \name - .thumb - .endm - - .macro non_word_aligned_thumb_func_start name - .global \name - .thumb - .endm - - .macro thumb_func_end name - .size \name, .-\name - .endm |