This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/17372] [3.5 Regression] ICE: verify_ssa failed (def does not dominate use)
- From: "micis at gmx dot de" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 9 Sep 2004 13:32:29 -0000
- Subject: [Bug tree-optimization/17372] [3.5 Regression] ICE: verify_ssa failed (def does not dominate use)
- References: <20040909112421.17372.micis@gmx.de>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From micis at gmx dot de 2004-09-09 13:32 -------
now fully reduced:
class Test
{
public:
Test(unsigned char P1, int P2[], char *P3, int P4);
char E[10];
char F[10];
int B;
};
Test::Test(unsigned char P1, int *P2, char *P3, int P4) :B(0)
{
int C = 3*4, D = 0;
for (unsigned char i=0; i<P1; i++)
{
C+=4;
this->E[i] = P2[i];
}
this->B = C + P4;
for (int i=0; i<P1; i++)
{
*((int*)&this->E[0]) = (this->F[i]);
D+=4;
}
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17372