mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
* config/tc-mips.c (check_absolute_expr): Change warning to
error. PR 12849.
This commit is contained in:
parent
ccc034af67
commit
4dc8550840
@ -1,3 +1,8 @@
|
||||
Sun Jul 13 20:43:46 1997 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
||||
* config/tc-mips.c (check_absolute_expr): Change warning to
|
||||
error.
|
||||
|
||||
Fri Jul 11 10:18:47 1997 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* config/tc-mips.c (macro_build): Refine code to check if an
|
||||
|
@ -2760,7 +2760,7 @@ check_absolute_expr (ip, ex)
|
||||
if (ex->X_op == O_big)
|
||||
as_bad ("unsupported large constant");
|
||||
else if (ex->X_op != O_constant)
|
||||
as_warn ("Instruction %s requires absolute expression", ip->insn_mo->name);
|
||||
as_bad ("Instruction %s requires absolute expression", ip->insn_mo->name);
|
||||
}
|
||||
|
||||
/* Count the leading zeroes by performing a binary chop. This is a
|
||||
|
Loading…
Reference in New Issue
Block a user