diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/951222-1.c')
-rwxr-xr-x | gcc/testsuite/gcc.c-torture/compile/951222-1.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/951222-1.c b/gcc/testsuite/gcc.c-torture/compile/951222-1.c deleted file mode 100755 index b8246f5..0000000 --- a/gcc/testsuite/gcc.c-torture/compile/951222-1.c +++ /dev/null @@ -1,15 +0,0 @@ -extern long long foo (); - -long long -sub1 () -{ - char junk[10000]; - register long long a, b, c; - - b = foo (); - - setjmp (); - a = foo (); - c = a - b; - return c; -} |