diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1994-02-16 12:50:51 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1994-02-16 12:50:51 -0800 |
commit | 9316e820d01257e8550e581e89f2cbd7241a8f4a (patch) | |
tree | 3380c1340ed9a8b67da37c6fe4233b56661da53f /gcc | |
parent | 29587b1c562162ec7f706aadb9805d05089e1987 (diff) | |
download | gcc-9316e820d01257e8550e581e89f2cbd7241a8f4a.zip gcc-9316e820d01257e8550e581e89f2cbd7241a8f4a.tar.gz gcc-9316e820d01257e8550e581e89f2cbd7241a8f4a.tar.bz2 |
(end_final): Pass BIGGEST_ALIGNMENT not align to
ASM_OUTPUT_ALIGNED_LOCAL.
From-SVN: r6577
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/final.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/final.c b/gcc/final.c index 6c29702..53cf97b 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -422,7 +422,8 @@ end_final (filename) else #endif #ifdef ASM_OUTPUT_ALIGNED_LOCAL - ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, align); + ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, + BIGGEST_ALIGNMENT); #else ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded); #endif |