2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 951222-1.c
blobb8246f5fe81f1db8c5cea2f845614177b52e2f8d
1 extern long long foo ();
3 long long
4 sub1 ()
6 char junk[10000];
7 register long long a, b, c;
9 b = foo ();
11 setjmp ();
12 a = foo ();
13 c = a - b;
14 return c;