aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/pr45617.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/pr45617.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/pr45617.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr45617.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/pr45617.c
deleted file mode 100644
index 58f977289..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr45617.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/* PR rtl-optimization/45617 */
-/* { dg-do compile } */
-/* { dg-options "-O2" } */
-
-int f1 (int x)
-{
- return (x >> 23) > 12;
-}
-int f2 (int x)
-{
- return x > ((13 << 23) - 1);
-}
-int f3 (int x)
-{
- return (x >> 23) >= 12;
-}
-int f4 (int x)
-{
- return x >= (12 << 23);
-}
-
-/* { dg-final { scan-assembler-not "sarl" } } */