⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 20030404-1.c

📁 linux下编程用 编译软件
💻 C
字号:
/* This exposed a bug in tree-ssa-ccp.c.  Since 'j' and 'i' are never   defined, CCP was not traversing the edges out of the if(), which caused   the PHI node for 'k' at the top of the while to only be visited once.   This ended up causing CCP to think that 'k' was the constant '1'.  */main(){  int i, j, k;  k = 0;  while (k < 10)    {      k++;      if (j > i)	j = 5;      else	j =3;    }  if (k != 10)    abort ();  return 0;}

⌨️ 快捷键说明

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