aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/vrp61.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/vrp61.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/vrp61.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/vrp61.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/vrp61.c
deleted file mode 100644
index 33eb44bb1..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/vrp61.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O2 -fdump-tree-vrp1-nouid" } */
-
-int f (int x, int y)
-{
- if (x > -1024 && x < 0 && y > -1024 && y < 0)
- {
- x = x ^ y;
- if (x < 0 || x > 1023)
- return 1234;
- }
- return x;
-}
-
-/* { dg-final { scan-tree-dump-not "1234" "vrp1" } } */
-/* { dg-final { cleanup-tree-dump "vrp1" } } */