mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 23:57:03 +08:00
* config/tc-mn10200.c (md_estimate_size_before_relax): Treat
a jsr target in a different section just like a jsr to an undefined target. Bug triggerd by c++ tests.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
Thu Feb 6 20:08:12 1997 Jeffrey A Law (law@cygnus.com)
|
||||||
|
|
||||||
|
* config/tc-mn10200.c (md_estimate_size_before_relax): Treat
|
||||||
|
a jsr target in a different section just like a jsr to
|
||||||
|
an undefined target.
|
||||||
|
|
||||||
Thu Feb 6 16:52:57 1997 Ian Lance Taylor <ian@cygnus.com>
|
Thu Feb 6 16:52:57 1997 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
* config/tc-mips.c (mips_fix_adjustable): Don't adjust relocations
|
* config/tc-mips.c (mips_fix_adjustable): Don't adjust relocations
|
||||||
|
@ -1230,7 +1230,8 @@ md_estimate_size_before_relax (fragp, seg)
|
|||||||
return 3;
|
return 3;
|
||||||
if (fragp->fr_subtype == 6)
|
if (fragp->fr_subtype == 6)
|
||||||
{
|
{
|
||||||
if (!S_IS_DEFINED (fragp->fr_symbol))
|
if (!S_IS_DEFINED (fragp->fr_symbol)
|
||||||
|
|| seg != S_GET_SEGMENT (fragp->fr_symbol))
|
||||||
{
|
{
|
||||||
fragp->fr_subtype = 7;
|
fragp->fr_subtype = 7;
|
||||||
return 5;
|
return 5;
|
||||||
|
Reference in New Issue
Block a user