aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/pr57264.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/pr57264.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/pr57264.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr57264.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/pr57264.c
deleted file mode 100644
index 46fce7f04..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr57264.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O1 -mcld" } */
-
-void test (int x, int **pp)
-{
- while (x)
- {
- int *ip = *pp;
- int *op = *pp;
- while (*ip)
- {
- int v = *ip++;
- *op++ = v + 1;
- }
- }
-}
-
-/* { dg-final { scan-assembler-not "stosl" } } */