------- Comment #1 from rguenth at gcc dot gnu dot org 2009-05-05 15:12 -------
Reduced testcase, maybe due to the C const expression changes(?)
typedef struct {
unsigned long bits[(((128)+64 -1)/64)];
} cpumask_t;
struct sched_domain {
cpumask_t span;
int flags;
};
void
cpu_to_allnodes_group(struct sched_domain *sd, int sched_smt_power_savings)
{
*sd = (struct sched_domain) {
.span = (cpumask_t) { { [0 ... (((128)+64 -1)/64)-1] = 0UL } },
.flags = (sched_smt_power_savings ? 256 : 0),
};
}
--
rguenth at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|middle-end |c
Target Milestone|--- |4.5.0
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40026