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 rtl-optimization/18611] [4.0 Regression] ICE: in bitmap_ior, at bitmap.c:704 with -O1 -fmove-loop-invariants


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-11-22 17:16 -------
Reduced testcase:
typedef struct {
    int channels_per_image;
    int channel[8];
} CineonImageInformation;
void
dumpCineonImageInfo(CineonImageInformation* imageInfo) {

  int i;
  for (i = 0; i < imageInfo->channels_per_image; ++i) {
    dumpCineonChannelInfo(&imageInfo->channel[i]);
  }
}

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18611


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