How will gcc set the alignment for variable/field with

 __attribute__((aligned))

What about different gcc versions/ different platforms?

Testing code:

int main() {
printf("%d\n", (__alignof__(char __attribute__ ((aligned)) )) );
}

For x86, gcc 3.4, 4.1, 4.3 I got 16.

link|improve this question

gcc.gnu.org/onlinedocs/gcc/Variable-Attributes.html, talks about aligned attribute first. As to exact alignment on different platforms -- hmm... – Pawel Veselov Jun 19 '11 at 3:51
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.