tree-loop-1.c
来自「linux下编程用 编译软件」· C语言 代码 · 共 22 行
C
22 行
/* PR tree-optimization/20640 *//* After unrolling the loop, we'd turn some conditional branches into unconditional ones, but branch redirection would fail to compute the PHI args for the PHI nodes in the replacement edge destination, so they'd remain NULL causing crashes later on. *//* { dg-do compile } */static int a = 0;extern int foo (void);extern int *bar (void) __attribute__ ((__const__));voidtest (int x){ int b = 10; while (foo () == -1 && *bar () == 4 && b > 0) --b; a = x;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?