[x264-devel] [PATCH 1/4] arm: move all .macro/.endm to column 0
Janne Grunau
janne-x264 at jannau.net
Tue Apr 1 22:11:42 CEST 2014
---
common/arm/asm.S | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/common/arm/asm.S b/common/arm/asm.S
index 77cc005..3a6f621 100644
--- a/common/arm/asm.S
+++ b/common/arm/asm.S
@@ -40,15 +40,15 @@
# define ELF @
#endif
- .macro require8, val=1
+.macro require8, val=1
ELF .eabi_attribute 24, \val
- .endm
+.endm
- .macro preserve8, val=1
+.macro preserve8, val=1
ELF .eabi_attribute 25, \val
- .endm
+.endm
- .macro function name
+.macro function name
.global EXTERN_ASM\name
.align 2
EXTERN_ASM\name:
@@ -56,16 +56,16 @@ ELF .hidden \name
ELF .type \name, %function
.func \name
\name:
- .endm
+.endm
- .macro movrel rd, val
+.macro movrel rd, val
#if HAVE_ARMV6T2 && !defined(PIC)
movw \rd, #:lower16:\val
movt \rd, #:upper16:\val
#else
ldr \rd, =\val
#endif
- .endm
+.endm
.macro movconst rd, val
#if HAVE_ARMV6T2
--
1.9.1
More information about the x264-devel
mailing list