This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/29922] gcc-4.3-20061118 failed to compile linux-2.6.19-rc6-git2
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 21 Nov 2006 07:47:57 -0000
- Subject: [Bug tree-optimization/29922] gcc-4.3-20061118 failed to compile linux-2.6.19-rc6-git2
- References: <bug-29922-12686@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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