]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* read.c (s_space): Revert 2003-07-28 change.
authorRainer Orth <ro@TechFak.Uni-Bielefeld.DE>
Wed, 30 Jul 2003 17:21:52 +0000 (17:21 +0000)
committerRainer Orth <ro@TechFak.Uni-Bielefeld.DE>
Wed, 30 Jul 2003 17:21:52 +0000 (17:21 +0000)
gas/ChangeLog
gas/read.c

index 3e3df6521193ea3d3ddb927d877f7e996c701081..7a0bb08847696c5099f4bc4c8c8022f5d4af5a1e 100644 (file)
@@ -1,3 +1,7 @@
+2003-07-30  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
+
+       * read.c (s_space): Revert 2003-07-28 change.
+
 2003-07-30  Alan Modra  <amodra@bigpond.net.au>
 
        * config/obj-elf.c (obj_elf_change_section): Allow "x" for .note*.
index de405cc52fb39e832211d196434db6ea9bb099ef..ef2340caa0e7df90c893878048139c2e289be960 100644 (file)
@@ -2970,7 +2970,9 @@ s_space (mult)
          bytes = repeat;
          if (repeat <= 0)
            {
-             if (repeat < 0)
+             if (!flag_mri)
+               as_warn (_(".space repeat count is zero, ignored"));
+             else if (repeat < 0)
                as_warn (_(".space repeat count is negative, ignored"));
              goto getout;
            }