* 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:
Steve Chamberlain 1994-01-31 15:28:06 +00:00
parent 83fe861ee0
commit ede7bc1c60
1 changed files with 12 additions and 0 deletions

View File

@ -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)
{