pr20920.c

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

C
27
字号
/* { dg-do compile } *//* { dg-options "-O2" } *//* This was causing a failure in the out of SSA pass because VRP was   trying to insert assertions for SSA names that flow through   abnormal edges.  */void f(int) __attribute__((__noreturn__));int d(const char *);char * j ();char *foo (int x){  char *path = __null;  try    {      path = j ();      if (path != __null)        if (d (path) != 0)          f (127);      f (127);    }  catch (...) { }  return path;}

⌨️ 快捷键说明

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