* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr40026.c
blob0d08f0dc8ac8e69d2c3b83e90f7058e89a04eefb
1 typedef struct {
2 unsigned long bits;
3 } S;
4 struct T {
5 S span;
6 int flags;
7 };
9 struct T f(int x)
11 return (struct T) {
12 .span = (S) { 0UL },
13 .flags = (x ? 256 : 0),