[Bug tree-optimization/15902] [3.5 Regression] ICE in tree_ssa_dominator_optimize
pinskia at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Wed Jun 16 08:20:00 GMT 2004
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-06-16 08:20 -------
Here is another testcase:
void foo (char *name)
{
if (name == 0)
name = 0;
while (name);
asm ("hello, world" : "=r" (name));
}
And another which is does not use asm:
int g();
void foo (int name)
{
if (name == 0)
name = 0;
while (name);
name = g();
}
--
What |Removed |Added
----------------------------------------------------------------------------
Last reconfirmed|2004-06-09 18:52:16 |2004-06-16 08:20:17
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15902
More information about the Gcc-bugs
mailing list