Commit 21c076f9 by Greg McGary Committed by Greg McGary

20000419-1.c: New test for arg clobbering with sibling-call optimizations.

	* execute/20000419-1.c: New test for arg clobbering with
	sibling-call optimizations.

From-SVN: r33249
parent 0a3fcd9a
2000-04-19 Greg McGary <gkm@gnu.org>
* execute/20000419-1.c: New test for arg clobbering with
sibling-call optimizations.
Wed Apr 12 22:54:02 2000 Hans-Peter Nilsson <hp@axis.com>
* execute/20000412-6.c: New test.
......
struct foo { int a, b, c; };
void
brother (int a, int b, int c)
{
if (a)
abort ();
}
void
sister (struct foo f, int b, int c)
{
brother ((f.b == b), b, c);
}
int
main ()
{
struct foo f = { 7, 8, 9 };
sister (f, 1, 2);
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