diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 304948be578..a6c760127b6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2002-02-14 Jakub Jelinek + + PR c/5503: + * c-decl.c (duplicate_decls): If builtin type has TYPE_ARG_TYPES NULL, + use arguments from newtype. + 2002-02-13 Eric Christopher * config/mips/mips.c (override_options): Add check for march/mipsX @@ -21,7 +27,7 @@ * config/rs6000/rs6000.c (rs6000_legitimize_reload_address): Do not push_reload for altivec modes. -2002-02-13 Joel Sherrill +2002-02-13 Joel Sherrill * config.gcc (a29k-*-rtems), config/a29k/rtems.h: General cleanup across all RTEMS targets including removal of #includes from config/*/rtems*.h diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 746fa470dff..ea7942c7243 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -1548,6 +1548,22 @@ duplicate_decls (newdecl, olddecl, different_binding_level) if (! different_binding_level) TREE_TYPE (olddecl) = oldtype; } + else if (TYPE_ARG_TYPES (oldtype) == NULL + && TYPE_ARG_TYPES (newtype) != NULL) + { + /* For bcmp, bzero, fputs the builtin type has arguments not + specified. Use the ones from the prototype so that type checking + is done for them. */ + tree trytype + = build_function_type (TREE_TYPE (oldtype), + TYPE_ARG_TYPES (newtype)); + trytype = build_type_attribute_variant (trytype, + TYPE_ATTRIBUTES (oldtype)); + + oldtype = trytype; + if (! different_binding_level) + TREE_TYPE (olddecl) = oldtype; + } if (!types_match) { /* If types don't match for a built-in, throw away the built-in. */ diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 0ae7fc4e3ba..b139854f046 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2002-02-14 Jakub Jelinek + + * gcc.dg/noncompile/20020213-1.c: New test. + 2002-02-13 Jakub Jelinek * g++.dg/other/debug3.C: New test. diff --git a/gcc/testsuite/gcc.dg/noncompile/20020213-1.c b/gcc/testsuite/gcc.dg/noncompile/20020213-1.c new file mode 100644 index 00000000000..77798b57c4b --- /dev/null +++ b/gcc/testsuite/gcc.dg/noncompile/20020213-1.c @@ -0,0 +1,31 @@ +/* PR c/5503 + Test whether argument checking is done for fputs, bzero and bcmp. */ +typedef struct { int i; } FILE; +typedef __SIZE_TYPE__ size_t; +int fputs (const char *, FILE *); +void bzero (void *, size_t); +int bcmp (const void *, const void *, size_t); + +char buf[32]; +FILE *f; + +int main () +{ + fputs ("foo"); /* { dg-error "too few" } */ + fputs ("foo", "bar", "baz"); /* { dg-error "too many" } */ + fputs (21, 43); + bzero (buf); /* { dg-error "too few" } */ + bzero (21); /* { dg-error "too few" } */ + bcmp (buf, buf + 16); /* { dg-error "too few" } */ + bcmp (21); /* { dg-error "too few" } */ + fputs ("foo", f); + bzero (buf, 32); + bcmp (buf, buf + 16, 16); + return 0; +} + +/* { dg-warning "passing arg 2 of" "2nd incompatible" { target *-*-* } 15 } */ +/* { dg-warning "passing arg 1 of" "1st incompatible" { target *-*-* } 16 } */ +/* { dg-warning "passing arg 2 of" "2nd incompatible" { target *-*-* } 16 } */ +/* { dg-warning "passing arg 1 of" "1st incompatible" { target *-*-* } 18 } */ +/* { dg-warning "passing arg 1 of" "1st incompatible" { target *-*-* } 20 } */