aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/20031021-1.c
blob: 7c34ff4496ac295ef921afa6410f764091e8b9fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */

struct A
{
  int i : 8;
};

signed char c1, c2;
struct A a;

int main()
{
  a.i = c1;
  c2 = a.i;
  return a.i;
}

/* We should only store to a.i, not load from it.  */
/* { dg-final { scan-tree-dump-not "= a.i" "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */