commit | a81fd294be55f8781dbf22f381a3335212d8dbd9 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Fri Oct 04 16:25:47 2013 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Oct 04 16:25:47 2013 +0000 |
tree | 9ec72f7421cf5b88c2715f733b880bd18a138464 | |
parent | bf452313b0fcc2a14e55435b93eebd0ead73ad3e [diff] | |
parent | 719269db18a03dee45de63cc989855b117e9e177 [diff] |
Merge "Fixed ASM_ALIGN macro"
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