From: Nick Clifton Date: Wed, 1 Mar 2000 18:03:49 +0000 (+0000) Subject: Remove bigus .align check X-Git-Tag: gdb_5_0-2000-04-10-branchpoint~387 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8bf950bf50d61766f086314e5d1a21d00db39ace;p=external%2Fbinutils.git Remove bigus .align check --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 7a30f28..8e65c9b 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2000-03-01 Nick Clifton + + * gasp.c (do_align): Remove bogus check of alignment value. + 2000-02-27 Thomas de Lellis * config/obj-elf.c (elf_frob_symbol): Remove code which when diff --git a/gas/gasp.c b/gas/gasp.c index dd4674c..629e0c0 100644 --- a/gas/gasp.c +++ b/gas/gasp.c @@ -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);