diff options
author | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2003-07-28 20:35:59 +0000 |
---|---|---|
committer | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2003-07-28 20:35:59 +0000 |
commit | 8d548edbc907fc29e0d5d48b5c5f0004efeb52c9 (patch) | |
tree | 1ba449d37ee08718ca20a95348557a18aecbf4da /gas/read.c | |
parent | dcd410fe154407950c2b6783093f58e120cb0286 (diff) | |
download | gdb-8d548edbc907fc29e0d5d48b5c5f0004efeb52c9.zip gdb-8d548edbc907fc29e0d5d48b5c5f0004efeb52c9.tar.gz 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.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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; } |