This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/17672] [4.0 Regression] ICE in build_classic_dist_vector
- 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: 26 Sep 2004 00:01:44 -0000
- Subject: [Bug tree-optimization/17672] [4.0 Regression] ICE in build_classic_dist_vector
- References: <20040925232849.17672.opticcow@linux-militia.net>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-09-26 00:01 -------
Something little shorter:
typedef struct simple_bitmap_def { int elms[1]; } *sbitmap;
void dump_sbitmap_vector (sbitmap bmap)
{
int bb, i, n;
for (bb = 0; bb < 10; bb++)
for (i = 0; i < 10; i++)
for (n = 0; n < 20; n++)
bmap->elms[i]++;
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17672