X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.dg%2Fc99-impl-decl-1.c;fp=gcc%2Ftestsuite%2Fgcc.dg%2Fc99-impl-decl-1.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=6602bc71dd39078bdf9f07ea648277654ecd35b7;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.dg/c99-impl-decl-1.c b/gcc/testsuite/gcc.dg/c99-impl-decl-1.c deleted file mode 100644 index 6602bc71..00000000 --- a/gcc/testsuite/gcc.dg/c99-impl-decl-1.c +++ /dev/null @@ -1,21 +0,0 @@ -/* Test for implicit function declaration: in C90 only. */ -/* Origin: Joseph Myers */ -/* { dg-do compile } */ -/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */ - -void -foo (void) -{ - bar (); /* { dg-bogus "warning" "warning in place of error" } */ - /* { dg-error "implicit" "C99 implicit declaration error" { target *-*-* } 9 } */ -} - -/* C90 subclause 7.1.7 says we can implicitly declare strcmp; C99 removes - implict declarations. -*/ -int -bar (const char *a, const char *b) -{ - return strcmp (a, b); /* { dg-bogus "warning" "warning in place of error" } */ - /* { dg-error "implicit" "C99 implicit declaration error" { target *-*-* } 19 } */ -}