]> git.sesse.net Git - x264/commitdiff
arm: move all .macro/.endm to column 0
authorJanne Grunau <janne-x264@jannau.net>
Tue, 1 Apr 2014 20:11:42 +0000 (22:11 +0200)
committerFiona Glaser <fiona@x264.com>
Tue, 22 Apr 2014 22:37:50 +0000 (15:37 -0700)
common/arm/asm.S

index 77cc005f9665a5198b630a63fb3607c1a41ee7a9..3a6f62139729d892a1fb97723cc6677287418a49 100644 (file)
 #   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