mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 20:28:28 +08:00
* config/tc-mips.c (md_apply_fix): Make a branch to an odd address
an error rather than a warning.
This commit is contained in:
@ -1,5 +1,8 @@
|
||||
Tue Jan 28 15:27:28 1997 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
||||
* config/tc-mips.c (md_apply_fix): Make a branch to an odd address
|
||||
an error rather than a warning.
|
||||
|
||||
* config/tc-mips.c (md_convert_frag): If the user explicitly
|
||||
requested an extended opcode, pass warn as true to mips16_immed.
|
||||
|
||||
|
@ -8346,8 +8346,8 @@ md_apply_fix (fixP, valueP)
|
||||
* the current segment).
|
||||
*/
|
||||
if ((value & 0x3) != 0)
|
||||
as_warn_where (fixP->fx_file, fixP->fx_line,
|
||||
"Branch to odd address (%lx)", value);
|
||||
as_bad_where (fixP->fx_file, fixP->fx_line,
|
||||
"Branch to odd address (%lx)", value);
|
||||
value >>= 2;
|
||||
|
||||
/* update old instruction data */
|
||||
|
Reference in New Issue
Block a user