diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-28 23:44:42 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-28 23:44:42 +0000 |
commit | 1285e5f709fdad66b767def76d78d873bd0dbe97 (patch) | |
tree | 6a9f7d490218d6c69772aee38b9a37b097c439b4 /gcc/tree.c | |
parent | 2f95707a4f249cd7eb5435d499adbf58a68d1916 (diff) | |
download | gcc-1285e5f709fdad66b767def76d78d873bd0dbe97.tar.gz |
* tree.c (default_valid_attribute_p): Don't use PARAMS on a
function definition.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45247 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree.c b/gcc/tree.c index e5bc8d8dba9..548ba7e970c 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; |