From: Kaveh R. Ghazi Date: Tue, 28 Aug 2001 23:44:42 +0000 (+0000) Subject: tree.c (default_valid_attribute_p): Don't use PARAMS on a function definition. X-Git-Tag: prereleases/libstdc++-3.0.95~2377 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=252cf8126e2b3bbdbd483e93a27d1b7288c01b99;p=thirdparty%2Fgcc.git tree.c (default_valid_attribute_p): Don't use PARAMS on a function definition. * tree.c (default_valid_attribute_p): Don't use PARAMS on a function definition. From-SVN: r45247 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 648b5f5cef6e..d7f8e79fc4b5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-08-28 Kaveh R. Ghazi + + * tree.c (default_valid_attribute_p): Don't use PARAMS on a + function definition. + 2001-08-28 Daniel Berlin * df.h (struct df): Add rts_order variable. diff --git a/gcc/tree.c b/gcc/tree.c index e5bc8d8dba9c..548ba7e970c8 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -2691,7 +2691,7 @@ build_type_attribute_variant (ttype, attribute) targetm.valid_type_attribute_p that always returns false. */ int -default_valid_attribute_p PARAMS ((attr_name, attr_args, decl, type)) +default_valid_attribute_p (attr_name, attr_args, decl, type) tree attr_name ATTRIBUTE_UNUSED; tree attr_args ATTRIBUTE_UNUSED; tree decl ATTRIBUTE_UNUSED;