vector-align-1.c
来自「用于进行gcc测试」· C语言 代码 · 共 12 行
C
12 行
/* Check to make sure the alignment on vectors is not being lost. *//* If some target has a Max alignment less than 128, please create a #ifdef around the alignment and add your alignment. */#define alignment 128char x __attribute__((aligned(alignment),vector_size(2)));int f[__alignof__(x) == alignment?1:-1];
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?