]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/concat.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / concat.c
diff --git a/gcc/testsuite/gcc.dg/concat.c b/gcc/testsuite/gcc.dg/concat.c
deleted file mode 100644 (file)
index 4f4f8d7..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-/* Copyright (C) 2001 Free Software Foundation, Inc.  */
-
-/* { dg-do compile } */
-
-/* Test we output a warning for concatenation of artifical strings.
-
-   Neil Booth, 10 Dec 2001.  */
-
-void foo ()
-{
-  char str1[] = __FUNCTION__ ".";      /* { dg-warning "deprecated" } */
-  char str2[] = __PRETTY_FUNCTION__ ".";/* { dg-warning "deprecated" } */
-  char str3[] = "." __FUNCTION__;      /* { dg-warning "deprecated" } */
-  char str4[] = "." __PRETTY_FUNCTION__;/* { dg-warning "deprecated" } */
-  char str5[] = "." ".";       /* No warning.  */
-}