From 8d548edbc907fc29e0d5d48b5c5f0004efeb52c9 Mon Sep 17 00:00:00 2001 From: Rainer Orth Date: Mon, 28 Jul 2003 20:35:59 +0000 Subject: [PATCH] * read.c (s_space): Don't warn about .space 0. --- gas/ChangeLog | 4 ++++ gas/read.c | 4 +--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 73135fec8f..c5d20f3e7a 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 ef2340caa0..de405cc52f 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; } -- 2.34.1