aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20010711-1.c
blob: 12971a55a155edceb2966c799a7579dab6731dee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
void foo (int *a) {}

int main ()
{
  int a;
  if (&a == 0)
    abort ();
  else
    {
      foo (&a);
      exit (0);
    }
}