gen-vect-33.c
来自「用于进行gcc测试」· C语言 代码 · 共 15 行
C
15 行
/* Compiler generates 64-bit stores of zero for this on some targets. Check there is no problem for such case. *//* { dg-do compile } *//* { dg-options "-O2 -ftree-vectorize" } */voidfoo (float *dest, int xcount, int ycount){ int x, y; for (y = 0; y < ycount; y++) for (x = 0; x < xcount; x++) dest[x + y] = (float) 0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?