This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/29801] [4.3 regression] ICE in set_lattice_value (tree-ssa-ccp.c)
- From: "rakdver at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 11 Nov 2006 11:36:05 -0000
- Subject: [Bug tree-optimization/29801] [4.3 regression] ICE in set_lattice_value (tree-ssa-ccp.c)
- References: <bug-29801-374@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #3 from rakdver at gcc dot gnu dot org 2006-11-11 11:36 -------
Smaller testcase:
const int a[3] = {1, 2, 3};
int test (int param)
{
if (param)
a[2] = 5;
return a[2];
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29801