__attribute __((align)) - gcc

时间:2010-08-30 10:26:54

标签: 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。

0 个答案:

没有答案