From: Doug Evans Date: Tue, 24 Feb 1998 21:39:58 +0000 (+0000) Subject: (s_endgif): Change length mismatched errors to warnings. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ef9448db9a24b8a53d50c75227bf12a1c1e8a55f;p=binutils-gdb.git (s_endgif): Change length mismatched errors to warnings. --- diff --git a/gas/config/tc-dvp.c b/gas/config/tc-dvp.c index d03c6c5647b..d58c8d820b0 100644 --- a/gas/config/tc-dvp.c +++ b/gas/config/tc-dvp.c @@ -2108,7 +2108,7 @@ s_endgif (ignore) if (count < 0 || fixup_count != 0) { - as_bad ("bad data count"); + as_warn ("bad data count"); return; } @@ -2130,7 +2130,7 @@ s_endgif (ignore) } if (! ok_p) { - as_bad ("nloop value does not match size of data"); + as_warn ("nloop value does not match size of data"); return; } }