aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/execute/920302-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/execute/920302-1.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/execute/920302-1.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/gcc/testsuite/gcc.c-torture/execute/920302-1.c b/gcc/testsuite/gcc.c-torture/execute/920302-1.c
deleted file mode 100644
index 5fbfd9d1b9c..00000000000
--- a/gcc/testsuite/gcc.c-torture/execute/920302-1.c
+++ /dev/null
@@ -1,42 +0,0 @@
-short optab[5];
-char buf[10];
-execute (ip)
- register unsigned short *ip;
-{
-#ifndef NO_LABEL_VALUES
- register void *base = &&x;
- char *bp = buf;
- static void *tab[] = {&&x, &&y, &&z};
- if (ip == 0)
- {
- int i;
- for (i = 0; i < 3; ++i)
- optab[i] = (short)(tab[i] - base);
- return;
- }
-x: *bp++='x';
- goto *(base + *ip++);
-y: *bp++='y';
- goto *(base + *ip++);
-z: *bp++='z';
- *bp=0;
- return;
-#else
- strcpy (buf, "xyxyz");
-#endif
-}
-
-short p[5];
-
-main ()
-{
- execute (0);
- p[0] = optab[1];
- p[1] = optab[0];
- p[2] = optab[1];
- p[3] = optab[2];
- execute (&p);
- if (strcmp (buf, "xyxyz"))
- abort ();
- exit (0);
-}