Commit df929284 by Mike Stump Committed by Mike Stump

non-local-goto-5.c: Fix for targets with no trampolines.

	* gcc.dg/torture/stackalign/non-local-goto-5.c: Fix for targets
	with no trampolines.

From-SVN: r172127
parent 14431f58
2011-04-07 Mike Stump <mikestump@comcast.net>
* gcc.dg/torture/stackalign/non-local-goto-5.c: Fix for targets
with no trampolines.
2011-04-07 Jakub Jelinek <jakub@redhat.com>
PR fortran/48117
......
/* { dg-do run } */
extern void exit (int);
#if !defined (NO_LABEL_VALUES) && !defined (NO_TRAMPOLINES)
extern void abort (void);
extern void exit (int);
int s(i){if(i>0){__label__ l1;int f(int i){if(i==2)goto l1;return 0;}return f(i);l1:;}return 1;}
int x(){return s(0)==1&&s(1)==0&&s(2)==1;}
int main(){if(x()!=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