Remove bigus .align check
authorNick Clifton <nickc@redhat.com>
Wed, 1 Mar 2000 18:03:49 +0000 (18:03 +0000)
committerNick Clifton <nickc@redhat.com>
Wed, 1 Mar 2000 18:03:49 +0000 (18:03 +0000)
gas/ChangeLog
gas/gasp.c

index 7a30f28c114929a48e34a7b457ab295736434386..8e65c9b57af84069e8cdde86835c55e4a0e4d31b 100644 (file)
@@ -1,3 +1,7 @@
+2000-03-01  Nick Clifton  <nickc@cygnus.com>
+
+       * gasp.c (do_align): Remove bogus check of alignment value.
+
 2000-02-27  Thomas de Lellis  <tdel@windriver.com>
 
        * config/obj-elf.c (elf_frob_symbol): Remove code which when
index dd4674c788420b195fae01afdb63df0fb67dc2c3..629e0c0478bc5d781642a5042e26fe6fbaeb20f6 100644 (file)
@@ -1439,11 +1439,6 @@ do_align (idx, in)
       have_fill = 1;
     }
 
-  if (al != 1
-      && al != 2
-      && al != 4)
-    WARNING ((stderr, _("alignment must be one of 1, 2 or 4.\n")));
-
   fprintf (outfile, ".align    %d", al);
   if (have_fill)
     fprintf (outfile, ",%d", fill);
This page took 0.030186 seconds and 4 git commands to generate.