aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/pr53153.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/pr53153.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/pr53153.c61
1 files changed, 0 insertions, 61 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/pr53153.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/pr53153.c
deleted file mode 100644
index 8899e04e9..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/pr53153.c
+++ /dev/null
@@ -1,61 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O2" } */
-
-extern void bar (void);
-
-/* Case 181 is not in the range for 'char'. */
-void
-foo1 (char *buf)
-{
- int x = *buf;
- switch (x)
- {
- case -76:
- case 65:
- case 181:
- bar();
- }
-}
-
-/* All cases are below the range of char. */
-void
-foo2 (char *buf)
-{
- int x = *buf;
- switch (x)
- {
- case -150:
- case -140:
- case -130:
- bar();
- }
-}
-
-/* All cases are above the range of char. */
-void
-foo3 (char *buf)
-{
- int x = *buf;
- switch (x)
- {
- case 130:
- case 140:
- case 150: /* This case is not in the range for 'char'. */
- bar();
- }
-}
-
-/* The bounding cases are partially out of range for char. */
-void
-foo4 (char *buf)
-{
- int x = *buf;
- switch (x)
- {
- case -130 ... -120:
- case 100:
- case 120 ... 130:
- bar();
- }
-}
-