From 450109cacdaee7b98e001fecb0d5f063a42b94a5 Mon Sep 17 00:00:00 2001 From: cpg Date: Thu, 27 Jan 2005 21:32:21 +0000 Subject: [PATCH] forgot to include the change for "Make relative branches out of range an error instead of a warning" from last commit --- gas/config/tc-z8k.c | 4 ++-- 1 file 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; -- 2.11.0