This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: alignment bug?
- From: Eljay Love-Jensen <eljay at adobe dot com>
- To: Gagan Arneja <gaagaan at gmail dot com>, John Fine <johnsfine at verizon dot net>
- Cc: GCC-help <gcc-help at gcc dot gnu dot org>
- Date: Mon, 21 Apr 2008 06:47:11 -0500
- Subject: Re: alignment bug?
What happens if the ALIGNED is applied to a variable, instead of applying it
to a data type?
For example:
typedef struct Bar
{
char c[129] ALIGNED(128);
} Bar;
--Eljay