This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tree-optimization/29922] gcc-4.3-20061118 failed to compile linux-2.6.19-rc6-git2



------- Comment #7 from pinskia at gcc dot gnu dot org  2006-11-21 07:47 -------
Confirmed, reduced testcase:
struct menu {
 struct menu *next;
 struct menu *list;
};
char line[128];
int conf_choice(struct menu *menu)
{
 struct menu *child;
 while (1)
 {
  for (child = menu->list; child; child = child->next)
 {
   if (menu_is_visible())
    break;
  }
  if (!child)
   continue;
  if (strlen(line) == 100)
 {
   f();
   continue;
  }
  return 1;
 }
}


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |blocker
             Status|WAITING                     |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2006-11-21 07:47:57
               date|                            |
   Target Milestone|---                         |4.3.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29922


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]