20020927-1.c
来自「gcc-you can use this code to learn somet」· 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 + -
显示快捷键?