summaryrefslogtreecommitdiff
path: root/gas/config/tc-z8k.c
diff options
context:
space:
mode:
authorChristian Groessler <chris@groessler.org>2005-01-27 21:32:21 +0000
committerChristian Groessler <chris@groessler.org>2005-01-27 21:32:21 +0000
commit9ac81aa5bb4e62470f3381778f61445d4c350f37 (patch)
treeb21575a9a91a244ff8737bc33b7e00fd4dda2c80 /gas/config/tc-z8k.c
parent4d998da5ef9e8d21664719806d0438e0bf2c4270 (diff)
downloadbinutils-redhat-9ac81aa5bb4e62470f3381778f61445d4c350f37.tar.gz
forgot to include the change for "Make relative branches out of range
an error instead of a warning" from last commit
Diffstat (limited to 'gas/config/tc-z8k.c')
-rw-r--r--gas/config/tc-z8k.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-z8k.c b/gas/config/tc-z8k.c
index 06ffdaed0b..b914a14f4b 100644
--- a/gas/config/tc-z8k.c
+++ b/gas/config/tc-z8k.c
@@ -1435,8 +1435,8 @@ md_apply_fix3 (fixS *fixP, valueT *valP, segT segment ATTRIBUTE_UNUSED)
_("cannot branch to odd address"));
val /= 2;
if (val > 127 || val < -128)
- as_warn_where (fixP->fx_file, fixP->fx_line,
- _("relative jump out of range"));
+ as_bad_where (fixP->fx_file, fixP->fx_line,
+ _("relative jump out of range"));
*buf++ = val;
fixP->fx_no_overflow = 1;
fixP->fx_done = 1;