aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr30904.c
blob: 31ca0497f91a75469307fc630926c2ed143e1859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do link } */
/* { dg-options "-O2 -fdump-tree-optimized" } */

extern int t;
extern void link_error(void);
int main (void)
{
      struct { unsigned int a : 7; } s;
      s.a = t;
      if (s.a >> 8)
          link_error ();
      if (s.a >> 9)
          link_error ();
}


/* { dg-final { scan-tree-dump-times "link_error" 0 "optimized"  } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */