vect-30.c

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 65 行

C
65
字号
/* { dg-require-effective-target vect_float } */#include <stdarg.h>#include "tree-vect.h"#define N 16float b[N] = {0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30};float a[N];float c[N];int main1 (int n){  int i=0;  /* Vectorized: unknown loop bound.  */  while (n--) {    a[i] = b[i];    i++;  }  /* check results:  */  for (i = 0; i < n; i++)    {      if (a[i] != b[i])        abort ();    }  return 0;}int main2 (unsigned int n){  int i=0;  int nn = n;  /* Vectorized: unknown loop bound.  */  while (n--) {    c[i] = b[i];    i++;  }  /* check results:  */  for (i = 0; i < nn; i++)    {      if (c[i] != b[i])        abort ();    }  return 0;}int main (void){   check_vect ();    main1 (N);  main2 (N);  return 0;}/* Need misalignment support, or cgraph to delay emitting the arrays until   after vectorization can force-align them.  *//* { dg-final { scan-tree-dump-times "vectorized 1 loops" 2 "vect" { xfail vect_no_align } } } */

⌨️ 快捷键说明

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