20020418-2.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 22 行

C
22
字号
/* PR optimization/6010 *//* { dg-do compile } *//* { dg-options "-O2 -funroll-all-loops" } *//* { dg-options "-O2 -funroll-all-loops -march=pentium3" { target i?86-*-* } } */void bar (float);void foo (float y, unsigned long z){  int b;  float c = y;  for (b = 0; b < z; b++)    {      bar (c);      if (c == y)	c = -y;      else	c = y;    }}

⌨️ 快捷键说明

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