From ceb1484da34b7492f539b535a930652690372fe5 Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Tue, 1 Apr 2014 22:11:42 +0200 Subject: [PATCH] arm: move all .macro/.endm to column 0 --- 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 77cc005f..3a6f6213 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 -- 2.40.0