]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/c90-impl-decl-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / c90-impl-decl-1.c
diff --git a/gcc/testsuite/gcc.dg/c90-impl-decl-1.c b/gcc/testsuite/gcc.dg/c90-impl-decl-1.c
deleted file mode 100644 (file)
index 4e4431e..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/* Test for implicit function declaration: in C90 only.  */
-/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
-/* { dg-do compile } */
-/* { dg-options "-std=iso9899:1990 -pedantic-errors" } */
-
-void
-foo (void)
-{
-  bar ();
-}
-
-/* C90 subclause 7.1.7 says we can implicitly declare strcmp; C99 removes
-   implict declarations.
-*/
-int
-bar (const char *a, const char *b)
-{
-  /* This fails for GCC CVS 20000709, but is not marked XFAIL since
-     GCC 2.95.2 passes.
-  */
-  return strcmp (a, b); /* { dg-bogus "implicit" "implicit declaration warning for strcmp" } */
-}