diff options
author | Neil Booth <neil@cat.daikokuya.demon.co.uk> | 2001-06-27 06:55:29 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-06-27 06:55:29 +0000 |
commit | 501990bbfca586dd26a941f65fce7b7a5a9440ae (patch) | |
tree | 9362672ad53c9697b55642ba54ba293d0e394ede /gcc/tree.h | |
parent | 84690a975d2dc7a0172c3686eb43e6ea2047b969 (diff) | |
download | gcc-501990bbfca586dd26a941f65fce7b7a5a9440ae.tar.gz |
system.h (TARGET_ESC): Move to ...
* system.h (TARGET_ESC): Move to ...
* defaults.h (TARGET_ESC): ... here.
* target-def.h (TARGET_VALID_DECL_ATTRIBUTE,
TARGET_VALID_TYPE_ATTRIBUTE): Default to a no-op handler.
* tree.c (default_valid_attribute_p): New.
(valid_machine_attribute): Handlers can not be NULL.
* tree.h (default_valid_attribute_p): New.
* doc/tm.texi: Document TARGET_ESC.
* cp/decl2.c (import_export_class): Update.
From-SVN: r43605
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index 7f2881c1e7b..0d69d6bd199 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -2039,8 +2039,11 @@ extern tree make_tree PARAMS ((tree, struct rtx_def *)); extern tree build_type_attribute_variant PARAMS ((tree, tree)); extern tree build_decl_attribute_variant PARAMS ((tree, tree)); +/* Default versions of target-overridable functions. */ + extern tree merge_decl_attributes PARAMS ((tree, tree)); extern tree merge_type_attributes PARAMS ((tree, tree)); +extern int default_valid_attribute_p PARAMS ((tree, tree, tree, tree)); /* Split a list of declspecs and attributes into two. */ |