This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/37385] [4.4 Regression] ICE in set_mem_alias_set, at emit-rtl.c:1789
- From: "tbm at cyrius dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 5 Sep 2008 16:26:17 -0000
- Subject: [Bug middle-end/37385] [4.4 Regression] ICE in set_mem_alias_set, at emit-rtl.c:1789
- References: <bug-37385-12387@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #2 from tbm at cyrius dot com 2008-09-05 16:26 -------
/* Testcase by Martin Michlmayr <tbm@cyrius.com> */
typedef struct sdl_data_def
{
}
sdl_data;
typedef void (*sdl_fun) (struct sdl_data_def *);
void undefined_function (sdl_data * sd)
{
}
void init_fps (sdl_fun *fun_tab)
{
int i;
for (i = 0; i < 700; i++)
fun_tab[i] = undefined_function;
}
--
tbm at cyrius dot com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|[4.4 Regression] ICE in |[4.4 Regression] ICE in
|set_mem_alias_set, at emit- |set_mem_alias_set, at emit-
|rtl.c:1789 |rtl.c:1789
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37385