This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: assemble_integer & align
- To: Denis Chertykov <denisc at overta dot ru>
- Subject: Re: assemble_integer & align
- From: Richard Henderson <rth at redhat dot com>
- Date: Sat, 22 Sep 2001 00:48:21 -0700
- Cc: gcc at gcc dot gnu dot org
- References: <auto-000000686491@overta.ru>
On Sat, Sep 22, 2001 at 11:38:44AM +0400, Denis Chertykov wrote:
> My main problem is 'if (align >= size * BITS_PER_UNIT)' because my
> ALIGN always 8 and if size > 1 then `assemble_integer' will output
> all integers as:
Why is your align always 8? Is that BIGGEST_ALIGNMENT?
If so, we can perhaps modify the tests there to take that
into account.
r~