标签: gcc attributes alignment memory-alignment
gcc如何使用
__attribute__((aligned))
不同的gcc版本/不同平台怎么样?
测试代码:
int main() { printf("%d\n", (__alignof__(char __attribute__ ((aligned)) )) ); }
对于x86,gcc 3.4,4.1,4.3我得到16。