mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-17 13:10:12 +08:00
* config/tc-mips.c (mips16_extended_frag): Give an error for an
attempt to use a non absolute symbol in an extending frag.
This commit is contained in:
parent
3fbe064171
commit
41a0ed225b
@ -1,3 +1,8 @@
|
|||||||
|
Tue Dec 10 11:37:14 1996 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
|
* config/tc-mips.c (mips16_extended_frag): Give an error for an
|
||||||
|
attempt to use a non absolute symbol in an extending frag.
|
||||||
|
|
||||||
Mon Dec 9 16:48:20 1996 Jeffrey A Law (law@cygnus.com)
|
Mon Dec 9 16:48:20 1996 Jeffrey A Law (law@cygnus.com)
|
||||||
|
|
||||||
* config/tc-mn10200.c: Flesh out assembler support for MN10200.
|
* config/tc-mn10200.c: Flesh out assembler support for MN10200.
|
||||||
|
@ -9184,6 +9184,8 @@ mips16_extended_frag (fragp, sec, stretch)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (symsec != absolute_section && sec != NULL)
|
||||||
|
as_bad_where (fragp->fr_file, fragp->fr_line, "unsupported relocation");
|
||||||
|
|
||||||
if ((val & ((1 << op->shift) - 1)) != 0
|
if ((val & ((1 << op->shift) - 1)) != 0
|
||||||
|| val < (mintiny << op->shift)
|
|| val < (mintiny << op->shift)
|
||||||
|
Loading…
Reference in New Issue
Block a user