aboutsummaryrefslogtreecommitdiff
path: root/gas/read.c
diff options
context:
space:
mode:
authorRainer Orth <ro@TechFak.Uni-Bielefeld.DE>2003-07-28 20:35:59 +0000
committerRainer Orth <ro@TechFak.Uni-Bielefeld.DE>2003-07-28 20:35:59 +0000
commit8d548edbc907fc29e0d5d48b5c5f0004efeb52c9 (patch)
tree1ba449d37ee08718ca20a95348557a18aecbf4da /gas/read.c
parentdcd410fe154407950c2b6783093f58e120cb0286 (diff)
downloadfsf-binutils-gdb-8d548edbc907fc29e0d5d48b5c5f0004efeb52c9.zip
fsf-binutils-gdb-8d548edbc907fc29e0d5d48b5c5f0004efeb52c9.tar.gz
fsf-binutils-gdb-8d548edbc907fc29e0d5d48b5c5f0004efeb52c9.tar.bz2
* read.c (s_space): Don't warn about .space 0.
Diffstat (limited to 'gas/read.c')
-rw-r--r--gas/read.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gas/read.c b/gas/read.c
index ef2340c..de405cc 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;
}