diff options
Diffstat (limited to 'gcc/config/h8300/h8300.c')
-rw-r--r-- | gcc/config/h8300/h8300.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/config/h8300/h8300.c b/gcc/config/h8300/h8300.c index bf11601..d4e8c46 100644 --- a/gcc/config/h8300/h8300.c +++ b/gcc/config/h8300/h8300.c @@ -5425,22 +5425,22 @@ h8300_insert_attributes (tree node, tree *attributes) static const struct attribute_spec h8300_attribute_table[] = { /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler, - affects_type_identity } */ + affects_type_identity, exclusions } */ { "interrupt_handler", 0, 0, true, false, false, - h8300_handle_fndecl_attribute, false }, + h8300_handle_fndecl_attribute, false, NULL }, { "saveall", 0, 0, true, false, false, - h8300_handle_fndecl_attribute, false }, + h8300_handle_fndecl_attribute, false, NULL }, { "OS_Task", 0, 0, true, false, false, - h8300_handle_fndecl_attribute, false }, + h8300_handle_fndecl_attribute, false, NULL }, { "monitor", 0, 0, true, false, false, - h8300_handle_fndecl_attribute, false }, + h8300_handle_fndecl_attribute, false, NULL }, { "function_vector", 0, 0, true, false, false, - h8300_handle_fndecl_attribute, false }, + h8300_handle_fndecl_attribute, false, NULL }, { "eightbit_data", 0, 0, true, false, false, - h8300_handle_eightbit_data_attribute, false }, + h8300_handle_eightbit_data_attribute, false, NULL }, { "tiny_data", 0, 0, true, false, false, - h8300_handle_tiny_data_attribute, false }, - { NULL, 0, 0, false, false, false, NULL, false } + h8300_handle_tiny_data_attribute, false, NULL }, + { NULL, 0, 0, false, false, false, NULL, false, NULL } }; |