diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-07-14 03:45:16 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-07-14 03:45:16 +0000 |
commit | 4dc85508405cd9903f3f2be2e5487ff4db180bf1 (patch) | |
tree | 83b52d2dfb594e8924da4e92050d1926800e7f56 /gas/config/tc-mips.c | |
parent | ccc034af675a7392fd0b01c314230be71d4e5ff2 (diff) | |
download | gdb-4dc85508405cd9903f3f2be2e5487ff4db180bf1.zip gdb-4dc85508405cd9903f3f2be2e5487ff4db180bf1.tar.gz gdb-4dc85508405cd9903f3f2be2e5487ff4db180bf1.tar.bz2 |
* config/tc-mips.c (check_absolute_expr): Change warning to
error.
PR 12849.
Diffstat (limited to 'gas/config/tc-mips.c')
-rw-r--r-- | gas/config/tc-mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 5a71412..8b4c6b9 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -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 |