loadpre5.c

来自「用于进行gcc测试」· C语言 代码 · 共 25 行

C
25
字号
/* { dg-do compile } */ /* { dg-options "-O2 -fdump-tree-pre-stats" } */int p;int r;__attribute__ ((noinline))static int a(void){  return p;}int main(int argc){  int q;  q = a();  /* We should be able to move the call to a into the if path.     in a perfect world, we'd actually decide that it can't touch     r, and not recompute it at all!.  */  if (argc)    r = 9;  return q + a();}/* { dg-final { scan-tree-dump-times "Eliminated: 1" 1 "pre"} } *//* { dg-final { cleanup-tree-dump "pre" } } */

⌨️ 快捷键说明

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