blob: 1050d06c6dd5fcc755c073702245130b89bc0e17 [file] [log] [blame]
/* { dg-additional-options "-std=gnu89" } */
foo (a, p)
int *p;
{
int b;
a++;
b = *p;
if (a)
return 1;
return b;
}