* read.c (s_lcomm): For .lcomm 1, set align to 0, not 1.
authorIan Lance Taylor <ian@airs.com>
Fri, 7 Jul 1995 22:42:13 +0000 (22:42 +0000)
committerIan Lance Taylor <ian@airs.com>
Fri, 7 Jul 1995 22:42:13 +0000 (22:42 +0000)
PR 5167.

gas/ChangeLog
gas/read.c

index 000b5a178a211edda53f34a76e64d382f7805f81..f10c8d69a4d712ed8626160e7bfa3d01bc073476 100644 (file)
@@ -1,5 +1,7 @@
 Fri Jul  7 11:17:27 1995  Ian Lance Taylor  <ian@cygnus.com>
 
+       * read.c (s_lcomm): For .lcomm 1, set align to 0, not 1.
+
        * config/obj-coff.c (coff_frob_symbol): If SF_GET_FUNCTION, set
        BSF_FUNCTION.
        (symbol_globalP, symbol_global_lastP): New global variables.
index b1c1e24c53738074993d37cefe80eb84b5c7c854..05996ff7809293f4735a6302f8780e1a3602c547 100644 (file)
@@ -1156,7 +1156,7 @@ s_lcomm (needs_align)
        else if (temp >= 2)
         align = 1;
        else
-        align = temp;
+        align = 0;
 
        record_alignment(bss_seg, align);
      }