From: Ian Lance Taylor Date: Fri, 7 Jul 1995 22:42:13 +0000 (+0000) Subject: * read.c (s_lcomm): For .lcomm 1, set align to 0, not 1. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c71a604ae102994ad081cb57be24586126048ba6;p=binutils-gdb.git * read.c (s_lcomm): For .lcomm 1, set align to 0, not 1. PR 5167. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 000b5a178a2..f10c8d69a4d 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,7 @@ Fri Jul 7 11:17:27 1995 Ian Lance Taylor + * read.c (s_lcomm): For .lcomm 1, set align to 0, not 1. + * config/obj-coff.c (coff_frob_symbol): If SF_GET_FUNCTION, set BSF_FUNCTION. (symbol_globalP, symbol_global_lastP): New global variables. diff --git a/gas/read.c b/gas/read.c index b1c1e24c537..05996ff7809 100644 --- a/gas/read.c +++ b/gas/read.c @@ -1156,7 +1156,7 @@ s_lcomm (needs_align) else if (temp >= 2) align = 1; else - align = temp; + align = 0; record_alignment(bss_seg, align); }