Commit 2c45f94b by Jeffrey A Law Committed by Jeff Law

* gcc.c-torture/execute/20000412-2.c: New test.

From-SVN: r33115
parent 002fe164
Wed Apr 12 10:25:08 2000 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/execute/20000412-2.c: New test.
2000-04-12 Jakub Jelinek <jakub@redhat.com>
* objc/execute/bf-20.m: New test.
......
int f(int a,int *y)
{
int x = a;
if (a==0)
return *y;
return f(a-1,&x);
}
int main(int argc,char **argv)
{
if (f (100, (int *) 0) != 1)
abort ();
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