aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/950613-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/950613-1.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/950613-1.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/950613-1.c b/gcc/testsuite/gcc.c-torture/compile/950613-1.c
deleted file mode 100644
index 8aa757f476c..00000000000
--- a/gcc/testsuite/gcc.c-torture/compile/950613-1.c
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef NO_LABEL_VALUES
-f ()
-{
- long *sp;
- long *pc;
-
- static void *dummy[] =
- {
- &&L1,
- &&L2,
- };
-
- L1:
- {
- float val;
- val = *(float *) sp;
- val = -val;
- *(float *) sp = val;
- goto *pc++;
- }
-
- L2:
- {
- float from;
- *(long long *) sp = from;
- goto *pc++;
- }
-}
-#else
-int x;
-#endif