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

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"  } } */