vrp01.c

来自「linux下编程用 编译软件」· C语言 代码 · 共 29 行

C
29
字号
/* { dg-do compile } *//* { dg-options "-O2 -fdump-tree-vrp" } */foo (int *p, int i){  int x;  if (i > 10)    {      if (p)	{	  x = *p;	  p = 0;	}    }  else    p = 0;  /* This should be folded to if (1), but only if we insert an     assertion on the ELSE edge from the inner 'if (p)'.  */  if (p == 0)    return x + 1;  return i;}/* { dg-final { scan-tree-dump-times "Folding predicate p_.*to 1" 1 "vrp" } } *//* { dg-final { cleanup-tree-dump "vrp" } } */

⌨️ 快捷键说明

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