aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/torture/pr56150.c
blob: 6de1115a240c833b61810eba19fdf60f034d1c52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */

struct {
    int f4;
} g1;

long g2;

volatile long g3;

void func_1 ()
{
  if (g2)
    g1 = g1;
  else
    g3;
}