blob: 307bd5cc4148052e0f8c6a51878cb0fbe48b8405 [file] [log] [blame]
/* { dg-additional-options "-std=gnu89" } */
foo (p, a, b)
int *p;
int a;
int b;
{
a += p[0];
b += p[1];
if (a == 0)
return b;
return a;
}
bar (a)
{
return -a > 0 ? 1 : 2;
}