vect-iv-11.c

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

C
33
字号
/* { dg-require-effective-target vect_int } */#include <stdio.h>#include <stdarg.h>#include "tree-vect.h"int main1 (int len){    int s = 0;  int i = len;  /* vectorization of induction with reduction.  */  for ( ; i > 1; i -=2)    s += i;  return s;}int main (void){   int s;  check_vect ();    s = main1 (26);  if (s != 182)    abort ();  return 0;} /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } *//* { dg-final { cleanup-tree-dump "vect" } } */

⌨️ 快捷键说明

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