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

📄 20020201-2.c

📁 gcc-you can use this code to learn something about gcc, and inquire further into linux,
💻 C
字号:
/* This testcase caused ICE because gcc was not able to add instructions   on edge from ENTRY block successor to itself.  *//* { dg-do compile } *//* { dg-options "-O3 -fssa" } */struct A { int a1; int a2; };struct B { long int b[32]; };extern int bar (struct B *, struct A *);intfoo (struct B x){  struct A a, b;  struct B c;  int d;  while (1)    {      a.a1 = 0;      a.a2 = 0;      b = a;      c = x;      d = bar (&c, &b);      if (d >= 0)        return d;    }  return 0;}

⌨️ 快捷键说明

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