Commit c0230f37 by Jakub Jelinek

Duh, broken perms.

From-SVN: r41445
parent 43e72072
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);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment