From: Jim Wilson Date: Wed, 16 Feb 1994 20:50:51 +0000 (-0800) Subject: (end_final): Pass BIGGEST_ALIGNMENT not align to X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9316e820d01257e8550e581e89f2cbd7241a8f4a;p=gcc.git (end_final): Pass BIGGEST_ALIGNMENT not align to ASM_OUTPUT_ALIGNED_LOCAL. From-SVN: r6577 --- diff --git a/gcc/final.c b/gcc/final.c index 6c297020d60..53cf97b455c 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