20020927-1.c

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

C
27
字号
/* PR optimization/7520 *//* ICE at -O3 on x86 due to register life problems caused by   the return-without-value in bar.  */intfoo (){  int i;  long long int j;  while (1)    {      if (j & 1)	++i;      j >>= 1;      if (j)	return i;    }}intbar (){  if (foo ())    return;}

⌨️ 快捷键说明

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