* c-decl.c (mesg_implicit_function_declaration): Init to -1. (implicit_decl_warning): New function. (implicitly_declare): Use it. * c-typeck.c (build_external_ref): Use implicit_decl_warning to complain about implicit decls of builtins. * c-lang.c (lang_init): Set mesg_implicit_function_declaration based on pedantic && flag_isoc99, if not already set. * c-tree.h: Declare mesg_implicit_function_declaration. Prototype implicit_decl_warning. * gcc.dg/c99-impl-decl-1.c: No longer XFAIL. From-SVN: r35385
22 lines
670 B
C
22 lines
670 B
C
/* Test for implicit function declaration: in C90 only. */
|
|
/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
|
|
/* { 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 } */
|
|
}
|