* read.c (s_lcomm): Align lcomm data.
* config/tc-z8k.c (tc_reloc_mangle): Don't allow subtraction from different sections.
This commit is contained in:
parent
83fe861ee0
commit
ede7bc1c60
1 changed files with 12 additions and 0 deletions
12
gas/read.c
12
gas/read.c
|
@ -1090,6 +1090,18 @@ s_lcomm (needs_align)
|
|||
}
|
||||
#endif
|
||||
#endif
|
||||
if (!needs_align)
|
||||
{
|
||||
/* FIXME. This needs to be machine independent. */
|
||||
if (temp >= 4)
|
||||
align = 2;
|
||||
else if (temp >= 2)
|
||||
align = 1;
|
||||
else
|
||||
align = temp;
|
||||
|
||||
record_alignment(bss_seg, align);
|
||||
}
|
||||
|
||||
if (needs_align)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue