20000420-2.c: New test for stack misalignment when optimizing...

* compile/20000420-2.c: New test for stack misalignment
	when optimizing, but without sibling-call optimizations (-O1).

From-SVN: r33299
This commit is contained in:
Greg McGary 2000-04-21 01:02:57 +00:00 committed by Greg McGary
parent f0c0bdf5e0
commit 21caf59006
2 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2000-04-20 Greg McGary <gkm@gnu.org>
* compile/20000420-2.c: New test for stack misalignment
when optimizing, but without sibling-call optimizations (-O1).
Wed Apr 19 09:16:32 2000 Catherine Moore <clm@cygnus.com>
* execute/921017-1.c: Check for NO_TRAMPOLINES.

View File

@ -0,0 +1,11 @@
struct x { int a, b, c; };
extern struct x a ();
extern void b (struct x);
void
foo ()
{
a ();
b (a ());
}