diff options
author | Pavel Chupin <pavel.v.chupin@intel.com> | 2013-10-04 11:08:56 +0400 |
---|---|---|
committer | Pavel Chupin <pavel.v.chupin@intel.com> | 2013-10-04 11:12:58 +0400 |
commit | 719269db18a03dee45de63cc989855b117e9e177 (patch) | |
tree | e3726194020fb9fd46bc79408871e122e0affb7b /libc/arch-common | |
parent | 41ba05e22ed1829cc7431fd4899cfa5725c76044 (diff) | |
download | bionic-719269db18a03dee45de63cc989855b117e9e177.zip bionic-719269db18a03dee45de63cc989855b117e9e177.tar.gz bionic-719269db18a03dee45de63cc989855b117e9e177.tar.bz2 |
Fixed ASM_ALIGN macro
Got it all wrong on first patch. Somehow that didn't affect system
build, neither arm nor x86... something to think about.
Change-Id: I45416d843aad44af62841c6f6ab607ccf3f012ea
Signed-off-by: Pavel Chupin <pavel.v.chupin@intel.com>
Diffstat (limited to 'libc/arch-common')
-rw-r--r-- | libc/arch-common/bionic/asm_multiarch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/arch-common/bionic/asm_multiarch.h b/libc/arch-common/bionic/asm_multiarch.h index 32c7e5b..85e1b57 100644 --- a/libc/arch-common/bionic/asm_multiarch.h +++ b/libc/arch-common/bionic/asm_multiarch.h @@ -28,9 +28,9 @@ #ifdef __LP64__ # define ASM_PTR_SIZE(x) .quad x -# define ASM_ALIGN(x) .align 4 +# define ASM_ALIGN(x) #else # define ASM_PTR_SIZE(x) .long x -# define ASM_ALIGN(x) +# define ASM_ALIGN(x) .align x #endif |