aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/xc.c
blob: 1050d06c6dd5fcc755c073702245130b89bc0e17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-additional-options "-std=gnu89" } */

foo (a, p)
     int *p;
{
  int b;

  a++;
  b = *p;
  if (a)
    return 1;
  return b;
}