[Bug tree-optimization/19736] [4.0 Regression] ICE with type mismatch between SSA_NAME and its symbol
pinskia at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Tue Feb 1 19:12:00 GMT 2005
------- Additional Comments From pinskia at gcc dot gnu dot org 2005-02-01 19:12 -------
Confirmed, reduce testcase:
extern char *strcpy (char *, const char *);
void sdbout_one_type (char *p)
{
int i, t = 1;
char *q;
for (i = 0; i < 2; i++)
{
strcpy (p, "1");
p += sizeof ("1");
}
if (t)
q = "2";
else
q = "3";
strcpy (p, q);
}
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Last reconfirmed|0000-00-00 00:00:00 |2005-02-01 19:12:22
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19736
More information about the Gcc-bugs
mailing list