aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/pr21518.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/pr21518.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/pr21518.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr21518.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/pr21518.c
deleted file mode 100644
index 52cbed6f4..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr21518.c
+++ /dev/null
@@ -1,33 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O2 -fPIC -fno-tree-pre" } */
-/* { dg-require-effective-target ia32 } */
-/* { dg-require-effective-target fpic } */
-
-extern void __attribute__ ((regparm (3)))
-drawPointsLines (char type, int first, int *dd);
-
-int
-do_locator (int *call)
-{
- char prephitmp5;
- int type;
- int i;
-
- if (call == 0)
- prephitmp5 = 1;
- else
- {
- type = *call;
- i = 0;
- do
- {
- if (i != type)
- drawPointsLines ((int) (char) type, 0, call);
- i = i + 1;
- }
- while (i != 2);
- prephitmp5 = (char) type;
- }
- drawPointsLines ((int) prephitmp5, 0, call);
- return 0;
-}