* config/obj-coffbfd.c (fill_section): Don't allow fills backwards.

* config/tc-sh (get_specific, md_convert_frag,
	md_estimate_size_before_relax): Add support for rest of opcodes.
This commit is contained in:
Steve Chamberlain
1993-06-17 21:58:28 +00:00
parent f216ecc54a
commit 115147fbb0
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
Thu Jun 17 14:56:07 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
* config/obj-coffbfd.c (fill_section): Don't allow fills backwards.
* config/tc-sh (get_specific, md_convert_frag,
md_estimate_size_before_relax): Add support for rest of opcodes.
Tue Jun 15 17:03:25 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) Tue Jun 15 17:03:25 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
* Makefile.in: remove parentdir support; use INSTALL_XFORM * Makefile.in: remove parentdir support; use INSTALL_XFORM

View File

@ -550,7 +550,7 @@ DEFUN (fill_section, (abfd, h, file_cursor),
} }
fill_size = frag->fr_var; fill_size = frag->fr_var;
if (fill_size) if (fill_size && frag->fr_offset > 0)
{ {
unsigned int count; unsigned int count;
unsigned int off = frag->fr_fix; unsigned int off = frag->fr_fix;