This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tree-optimization/17672] [4.0 Regression] ICE in build_classic_dist_vector


------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]