aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr98199.c
blob: 6605d38788c389b90b1e0fc192f75923f503e08d (plain)
1
2
3
4
5
6
7
8
/* PR tree-optimization/98199 */
/* { dg-require-effective-target int32plus } */

struct A { long a; short d; int c, f, e, g; };
struct B { int a, i; short j; struct A k; signed : 20; int e, g; } __attribute__((packed));
struct C { short a; unsigned i, k; struct B d; const int : 30; signed e : 20; signed : 18; };
const struct C l = { 1, 6, 0, {}, 0 };
int foo (void) { return l.e || 0; }