__attribute__((对齐)) - gcc
gcc 如何设置变量/字段的对齐方式
__attribute__((aligned))
不同的 gcc 版本/不同平台呢?
测试代码:
int main() {
printf("%d\n", (__alignof__(char __attribute__ ((aligned)) )) );
}
对于 x86、gcc 3.4、4.1、4.3,我得到了 16。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论