[x264-devel] arm: move all .macro/.endm to column 0

Janne Grunau git at videolan.org
Wed Apr 23 00:40:58 CEST 2014


x264 | branch: master | Janne Grunau <janne-x264 at jannau.net> | Tue Apr  1 22:11:42 2014 +0200| [8516f79f9674b1848b54e99c8bc0f9db8a3118d9] | committer: Jason Garrett-Glaser

arm: move all .macro/.endm to column 0

> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=8516f79f9674b1848b54e99c8bc0f9db8a3118d9
---

 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



More information about the x264-devel mailing list