X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2Fcomp-goto-2.c;fp=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2Fcomp-goto-2.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=771cd956995a7e1da4736abab2c3153e3d10c6e5;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.c-torture/execute/comp-goto-2.c b/gcc/testsuite/gcc.c-torture/execute/comp-goto-2.c deleted file mode 100644 index 771cd956..00000000 --- a/gcc/testsuite/gcc.c-torture/execute/comp-goto-2.c +++ /dev/null @@ -1,36 +0,0 @@ -/* A slight variation of 920501-7.c. */ - -#ifdef STACK_SIZE -#define DEPTH ((STACK_SIZE) / 512 + 1) -#else -#define DEPTH 1000 -#endif - -#if ! defined (NO_LABEL_VALUES) && !defined (NO_TRAMPOLINES) -x(a) -{ - __label__ xlab; - void y(a) - { - void *x = &&llab; - if (a==-1) - goto *x; - if (a==0) - goto xlab; - llab: - y (a-1); - } - y (a); - xlab:; - return a; -} -#endif - -main () -{ -#if ! defined (NO_LABEL_VALUES) && !defined (NO_TRAMPOLINES) - if (x (DEPTH) != DEPTH) - abort (); -#endif - exit (0); -}