20050702-1.c
来自「用于进行gcc测试」· C语言 代码 · 共 25 行
C
25 行
/* { dg-do compile } *//* { dg-options "-O2" } *//* We going into an infinite loop in fold because we were mishandling the return value of fold_to_nonsharp_ineq_using_bound. */_Bool f();void g(int);void h (int old_size){ int new_size = old_size, i; g(old_size - 1); i = 0; while (i < old_size - 1) { if (f()) { i++; continue; } while (i < old_size - 1) i++; } g(new_size);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?