vrp12.c

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

C
24
字号
/* { dg-do link } *//* { dg-options -O2 } */foo (int i){  int x;  x = i;  if (i < -10)    {      x = __builtin_abs (i);      /* VRP was incorrectly folding this to if (1).  */      if (x < 0)	link_error ();    }  return x;}main(){  foo (-30);}

⌨️ 快捷键说明

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