This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/19736] [4.0 Regression] ICE with type mismatch between SSA_NAME and its symbol
- 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: 1 Feb 2005 19:12:25 -0000
- Subject: [Bug tree-optimization/19736] [4.0 Regression] ICE with type mismatch between SSA_NAME and its symbol
- References: <20050201005316.19736.janis@gcc.gnu.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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