From 9316e820d01257e8550e581e89f2cbd7241a8f4a Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Wed, 16 Feb 1994 12:50:51 -0800 Subject: [PATCH] (end_final): Pass BIGGEST_ALIGNMENT not align to ASM_OUTPUT_ALIGNED_LOCAL. From-SVN: r6577 --- gcc/final.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.30.2