------- Comment #2 from tbm at cyrius dot com 2007-11-18 11:20 ------- /* Testcase by Martin Michlmayr <[EMAIL PROTECTED]> */
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