Make the NUL character be considered to be a line terminator.
authorNick Clifton <nickc@redhat.com>
Fri, 22 Aug 1997 18:14:35 +0000 (18:14 +0000)
committerNick Clifton <nickc@redhat.com>
Fri, 22 Aug 1997 18:14:35 +0000 (18:14 +0000)
gas/ChangeLog
gas/read.c

index 5a8f637e5fdd4a8fef7d4862e65ab602e0896888..40bce6413fe15c8bb7c29326521a138e3347a28d 100644 (file)
@@ -1,3 +1,8 @@
+Fri Aug 22 11:16:14 1997  Nick Clifton  <nickc@cygnus.com>
+
+       * read.c (is_end_of_line): Make NUL character be considered to be
+       a line terminator.
+
 start-sanitize-v850
 Fri Aug 22 10:45:33 1997  Nick Clifton  <nickc@cygnus.com>
 
index ab66ffed934f4c95b0208e4193adb9442856a3b2..bdd88644d3dffdc5180ec5198324f667d1a36081 100644 (file)
@@ -128,9 +128,9 @@ char lex_type[256] =
 char is_end_of_line[256] =
 {
 #ifdef CR_EOL
-  _, _, _, _, _, _, _, _, _, _, 99, _, _, 99, _, _,    /* @abcdefghijklmno */
+  99, _, _, _, _, _, _, _, _, _, 99, _, _, 99, _, _,   /* @abcdefghijklmno */
 #else
-  _, _, _, _, _, _, _, _, _, _, 99, _, _, _, _, _,     /* @abcdefghijklmno */
+  99, _, _, _, _, _, _, _, _, _, 99, _, _, _, _, _,    /* @abcdefghijklmno */
 #endif
   _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _,      /* */
 #ifdef TC_HPPA
@@ -1318,7 +1318,7 @@ s_align_bytes (arg)
   s_align (arg, 1);
 }
 
-/* Handle the .align pseud-op on machines where ".align 4" means align
+/* Handle the .align pseudo-op on machines where ".align 4" means align
    to a 2**4 boundary.  */
 
 void 
@@ -1866,11 +1866,14 @@ s_linkonce (ignore)
   demand_empty_rest_of_line ();
 }
 
-void 
-s_lcomm (needs_align)
+static void 
+s_lcomm_internal (needs_align, bytes_p)
      /* 1 if this was a ".bss" directive, which may require a 3rd argument
        (alignment); 0 if it was an ".lcomm" (2 args only)  */
      int needs_align;
+     /* 1 if the alignment value should be interpreted as the byte boundary,
+       rather than the power of 2. */
+     int bytes_p;
 {
   register char *name;
   register char c;
@@ -1965,6 +1968,20 @@ s_lcomm (needs_align)
          return;
        }
       align = get_absolute_expression ();
+      if (bytes_p)
+       {
+         /* Convert to a power of 2.  */
+         if (align != 0)
+           {
+             unsigned int i;
+
+             for (i = 0; (align & 1) == 0; align >>= 1, ++i)
+               ;
+             if (align != 1)
+               as_bad ("Alignment not a power of 2");
+             align = i;
+           }
+       }
       if (align > max_alignment)
        {
          align = max_alignment;
@@ -2040,7 +2057,20 @@ s_lcomm (needs_align)
   subseg_set (current_seg, current_subseg);
 
   demand_empty_rest_of_line ();
-}                              /* s_lcomm() */
+}                              /* s_lcomm_internal() */
+
+void
+s_lcomm (needs_align)
+     int needs_align;
+{
+  s_lcomm_internal (needs_align, 0);
+}
+
+void s_lcomm_bytes (needs_align)
+     int needs_align;
+{
+  s_lcomm_internal (needs_align, 1);
+}
 
 void 
 s_lsym (ignore)