summaryrefslogtreecommitdiff
path: root/asm/macros/function.s
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-11-01 08:29:13 -0700
committerYamaArashi <shadow962@live.com>2016-11-01 08:29:13 -0700
commita793e62d8364996a276c048bc55ae072a285053a (patch)
treed380305bb5605c85924a10ad8bcd00edad44c683 /asm/macros/function.s
parent2ec5b0cedd27bd028535fb13dcdb2f8e0efa58da (diff)
.s -> .inc
Diffstat (limited to 'asm/macros/function.s')
-rw-r--r--asm/macros/function.s29
1 files changed, 0 insertions, 29 deletions
diff --git a/asm/macros/function.s b/asm/macros/function.s
deleted file mode 100644
index b109595df..000000000
--- a/asm/macros/function.s
+++ /dev/null
@@ -1,29 +0,0 @@
- .macro arm_func_start name
- .align 2, 0
- .global \name
- .arm
- .type \name, %function
- .endm
-
- .macro arm_func_end name
- .size \name, .-\name
- .endm
-
- .macro thumb_func_start name
- .align 2, 0
- .global \name
- .thumb
- .thumb_func
- .type \name, %function
- .endm
-
- .macro non_word_aligned_thumb_func_start name
- .global \name
- .thumb
- .thumb_func
- .type \name, %function
- .endm
-
- .macro thumb_func_end name
- .size \name, .-\name
- .endm