aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/rotate-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/rotate-2.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/rotate-2.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/rotate-2.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/rotate-2.c
deleted file mode 100644
index 71fd7edbd..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/rotate-2.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* { dg-do compile { target { ! { ia32 } } } } */
-/* { dg-options "-O2" } */
-
-typedef unsigned int UTItype __attribute__ ((mode (TI)));
-
-void foo (UTItype *);
-
-UTItype
-test (void)
-{
- UTItype c = 0;
- foo (&c);
- c = c >> 5 | c << 123;
- return c;
-}
-/* { dg-final { scan-assembler-times "shrdq" 2 } } */