Duh, broken perms.

From-SVN: r41445
This commit is contained in:
Jakub Jelinek 2001-04-20 10:04:29 +02:00
parent 43e720723f
commit c0230f3744

View File

@ -0,0 +1,36 @@
void b (int *);
void c (int, int);
void d (int);
int e;
void a (int x, int y)
{
int f = x ? e : 0;
int z = y;
b (&y);
c (z, y);
d (f);
}
void b (int *y)
{
(*y)++;
}
void c (int x, int y)
{
if (x == y)
abort ();
}
void d (int x)
{
}
int main (void)
{
a (0, 0);
exit (0);
}