pr18582-1.c

来自「用于进行gcc测试」· C语言 代码 · 共 25 行

C
25
字号
/* { dg-do compile { target i?86-*-* x86_64-*-* } } *//* { dg-options "-msse3" } */typedef char v16qi __attribute__((vector_size (16)));typedef float v4sf __attribute__((vector_size (16)));typedef double v2df __attribute__((vector_size (16)));extern char ca[];extern float fa[];extern double da[];extern v16qi cva[];extern v4sf fva[];extern v2df dva[];voidfoo (void){  cva[0] = __builtin_ia32_loaddqu (ca);  cva[0] = __builtin_ia32_lddqu (ca);  fva[0] = __builtin_ia32_loadups (fa);  dva[0] = __builtin_ia32_loadupd (da);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?