aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/cpp/escape.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/cpp/escape.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/cpp/escape.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/cpp/escape.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/cpp/escape.c
deleted file mode 100644
index e7d5e08dd..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/cpp/escape.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/* Copyright (C) 2001 Free Software Foundation, Inc. */
-
-/* { dg-do compile } */
-/* { dg-options "-Wtraditional -std=c89" } */
-
-/* This tests various diagnostics with -Wtraditioanl about escape
- sequences, for both the preprocessor and the compiler.
-
- Neil Booth, 22 May 2001. */
-
-#if '\a' /* { dg-warning "traditional" "traditional bell" } */
-#endif
-#if '\x1a' != 26 /* { dg-warning "traditional" "traditional hex" } */
- #error bad hex /* { dg-bogus "bad" "bad hexadecimal evaluation" } */
-#endif
-#if L'\u00a1' /* { dg-warning "only valid" "\u is unknown in C89" } */
-#endif
-
-void foo ()
-{
- int c = '\a'; /* { dg-warning "traditional" "traditional bell" } */
-
- c = '\xa1'; /* { dg-warning "traditional" "traditional hex" } */
- c = L'\u00a1'; /* { dg-warning "only valid" "\u is unknown in C89" } */
-}