aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/rl78/rl78.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/config/rl78/rl78.c')
-rw-r--r--gcc/config/rl78/rl78.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/gcc/config/rl78/rl78.c b/gcc/config/rl78/rl78.c
index b9f6dcc..e2532b1 100644
--- a/gcc/config/rl78/rl78.c
+++ b/gcc/config/rl78/rl78.c
@@ -857,17 +857,17 @@ rl78_handle_saddr_attribute (tree * node,
/* Table of RL78-specific attributes. */
const struct attribute_spec rl78_attribute_table[] =
{
- /* Name, min_len, max_len, decl_req, type_req, fn_type_req, handler,
- affects_type_identity, exclusions. */
- { "interrupt", 0, 0, true, false, false, rl78_handle_func_attribute,
- false, NULL },
- { "brk_interrupt", 0, 0, true, false, false, rl78_handle_func_attribute,
- false, NULL },
- { "naked", 0, 0, true, false, false, rl78_handle_naked_attribute,
- false, NULL },
- { "saddr", 0, 0, true, false, false, rl78_handle_saddr_attribute,
- false, NULL },
- { NULL, 0, 0, false, false, false, NULL, false, NULL }
+ /* Name, min_len, max_len, decl_req, type_req, fn_type_req,
+ affects_type_identity, handler, exclude. */
+ { "interrupt", 0, 0, true, false, false, false,
+ rl78_handle_func_attribute, NULL },
+ { "brk_interrupt", 0, 0, true, false, false, false,
+ rl78_handle_func_attribute, NULL },
+ { "naked", 0, 0, true, false, false, false,
+ rl78_handle_naked_attribute, NULL },
+ { "saddr", 0, 0, true, false, false, false,
+ rl78_handle_saddr_attribute, NULL },
+ { NULL, 0, 0, false, false, false, false, NULL, NULL }
};