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-25 23:56 -------
Reduced testcase:
typedef struct simple_bitmap_def { int elms[1]; } *sbitmap;
void dump_sbitmap_vector (sbitmap *bmaps)
{
  int bb;
  for (bb = 0; bb < 10; bb++)
  {
    sbitmap bmap;
    unsigned int i, n;
    bmap = bmaps[bb];
      
    for (i = 0; i < 10; i++)
      for (n = 0; n < 20; n++)
	bmap->elms[i]++;
  }
}

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |spop at gcc dot gnu dot org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2004-09-25 23:56:01
               date|                            |
            Summary|ICE in                      |[4.0 Regression] ICE in
                   |build_classic_dist_vector   |build_classic_dist_vector
   Target Milestone|---                         |4.0.0


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]