From: Rainer Orth Date: Mon, 28 Jul 2003 20:35:59 +0000 (+0000) Subject: * read.c (s_space): Don't warn about .space 0. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8d548edbc907fc29e0d5d48b5c5f0004efeb52c9;p=binutils-gdb.git * read.c (s_space): Don't warn about .space 0. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 73135fec8fe..c5d20f3e7ab 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2003-07-28 Rainer Orth + + * read.c (s_space): Don't warn about .space 0. + 2003-07-28 Rainer Orth * config/tc-mips.c (mips_flag_pdr): Define. diff --git a/gas/read.c b/gas/read.c index ef2340caa0e..de405cc52fb 100644 --- a/gas/read.c +++ b/gas/read.c @@ -2970,9 +2970,7 @@ s_space (mult) bytes = repeat; if (repeat <= 0) { - if (!flag_mri) - as_warn (_(".space repeat count is zero, ignored")); - else if (repeat < 0) + if (repeat < 0) as_warn (_(".space repeat count is negative, ignored")); goto getout; }