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/34140] [4.3 Regression] ICE in is_hidden_global_store, at tree-ssa-sink.c:207



------- Comment #2 from tbm at cyrius dot com  2007-11-18 11:20 -------
/* Testcase by Martin Michlmayr <tbm@cyrius.com> */

typedef struct
{
  unsigned int fCubeful;
}
evalcontext;
typedef struct
{
  evalcontext aec[2];
  unsigned int fCubeful:1;
}
rolloutcontext;
void RolloutGeneral (int alternatives, int fCubeRollout, int et)
{
  int i;
  rolloutcontext rc;

  rc.fCubeful = rc.fCubeful;
  for (i = 0; i < alternatives; i++)
    if (et != 1)
      rc.aec[i].fCubeful = fCubeRollout || rc.fCubeful;
}


-- 


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


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