loop-4.c

来自「linux下的gcc编译器」· C语言 代码 · 共 26 行

C
26
字号
/* PR optimization/11841 *//* Originator: Andrey Panov <panov@canopus.iacp.dvo.ru> *//* Reduced testcase by Volker Reichelt <reichelt@igpm.rwth-aachen.de> *//* Verify that the (old) loop unroller doesn't wrongly mark a pseudo   referenced in a note as local.  *//* { dg-do run } *//* { dg-options "-O2 -funroll-loops" } */int *a;int main(){  double d[6];  int i, j;  for (i=0; i<4; ++i)    for (j=0; j<3; ++j)      d[i+j] = 0;  a = &i;  return 0;}

⌨️ 快捷键说明

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