* read.c (s_lcomm): For .lcomm 1, set align to 0, not 1.
PR 5167.
This commit is contained in:
parent
d97d5b48ab
commit
c71a604ae1
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
Fri Jul 7 11:17:27 1995 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
||||
* 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.
|
||||
|
|
|
@ -1156,7 +1156,7 @@ s_lcomm (needs_align)
|
|||
else if (temp >= 2)
|
||||
align = 1;
|
||||
else
|
||||
align = temp;
|
||||
align = 0;
|
||||
|
||||
record_alignment(bss_seg, align);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue