pr26435.c

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

C
21
字号
/* { dg-do compile } */ /* { dg-options "-O2 -ftree-loop-linear -fdump-tree-ltrans-all" } *//* { dg-require-effective-target size32plus } */int foo(int *p, int n){  int i, j, k = 0;  /* This is a reduction: there is a scalar dependence that cannot be     removed by rewriting IVs.  This code cannot and should not be     transformed into a perfect loop.  */  for (i = 0; i < 2; ++i, p += n)    for (j = 0; j < 2; ++j)      k += p[j];  return k;}/* { dg-final { scan-tree-dump-times "converted loop nest to perfect loop nest" 0 "ltrans"} } */ /* { dg-final { cleanup-tree-dump "ltrans" } } */

⌨️ 快捷键说明

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