diff options
Diffstat (limited to 'gcc/config/v850/v850-c.cc')
-rw-r--r-- | gcc/config/v850/v850-c.cc | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/gcc/config/v850/v850-c.cc b/gcc/config/v850/v850-c.cc index bafd6d9..b808710 100644 --- a/gcc/config/v850/v850-c.cc +++ b/gcc/config/v850/v850-c.cc @@ -90,7 +90,7 @@ static void mark_current_function_as_interrupt (void) { tree name; - + if (current_function_decl == NULL_TREE) { warning (0, "cannot set interrupt attribute: no current function"); @@ -104,7 +104,7 @@ mark_current_function_as_interrupt (void) warning (0, "cannot set interrupt attribute: no such identifier"); return; } - + decl_attributes (¤t_function_decl, tree_cons (name, NULL_TREE, NULL_TREE), 0); } @@ -125,9 +125,9 @@ ghs_pragma_section (cpp_reader * pfile ATTRIBUTE_UNUSED) tree sect_ident; const char *sect, *alias; enum GHS_section_kind kind; - + type = pragma_lex (&x); - + if (type == CPP_EOF && !repeat) goto reset; else if (type == CPP_NAME) @@ -138,20 +138,20 @@ ghs_pragma_section (cpp_reader * pfile ATTRIBUTE_UNUSED) else goto bad; repeat = 0; - + if (pragma_lex (&x) != CPP_EQ) goto bad; if (pragma_lex (&x) != CPP_NAME) goto bad; - + alias = IDENTIFIER_POINTER (x); - + type = pragma_lex (&x); if (type == CPP_COMMA) repeat = 1; else if (type != CPP_EOF) warning (OPT_Wpragmas, "junk at end of %<#pragma%> ghs section"); - + if (streq (sect, "data")) kind = GHS_SECTION_KIND_DATA; else if (streq (sect, "text")) kind = GHS_SECTION_KIND_TEXT; else if (streq (sect, "rodata")) kind = GHS_SECTION_KIND_RODATA; @@ -170,7 +170,7 @@ ghs_pragma_section (cpp_reader * pfile ATTRIBUTE_UNUSED) warning (0, "unrecognized section name %qE", sect_ident); return; } - + if (streq (alias, "default")) GHS_current_section_names [kind] = NULL; else @@ -188,7 +188,7 @@ ghs_pragma_section (cpp_reader * pfile ATTRIBUTE_UNUSED) /* #pragma ghs section \n: Reset all section names back to their defaults. */ { int i; - + for (i = COUNT_OF_GHS_SECTION_KINDS; i--;) GHS_current_section_names [i] = NULL; } @@ -198,10 +198,10 @@ void ghs_pragma_interrupt (cpp_reader * pfile ATTRIBUTE_UNUSED) { tree x; - + if (pragma_lex (&x) != CPP_EOF) warning (OPT_Wpragmas, "junk at end of %<#pragma%> ghs interrupt"); - + mark_current_function_as_interrupt (); } @@ -209,10 +209,10 @@ void ghs_pragma_starttda (cpp_reader * pfile ATTRIBUTE_UNUSED) { tree x; - + if (pragma_lex (&x) != CPP_EOF) warning (OPT_Wpragmas, "junk at end of %<#pragma%> ghs starttda"); - + push_data_area (DATA_AREA_TDA); } @@ -220,10 +220,10 @@ void ghs_pragma_startsda (cpp_reader * pfile ATTRIBUTE_UNUSED) { tree x; - + if (pragma_lex (&x) != CPP_EOF) warning (OPT_Wpragmas, "junk at end of %<#pragma%> ghs startsda"); - + push_data_area (DATA_AREA_SDA); } @@ -231,10 +231,10 @@ void ghs_pragma_startzda (cpp_reader * pfile ATTRIBUTE_UNUSED) { tree x; - + if (pragma_lex (&x) != CPP_EOF) warning (OPT_Wpragmas, "junk at end of %<#pragma%> ghs startzda"); - + push_data_area (DATA_AREA_ZDA); } @@ -242,10 +242,10 @@ void ghs_pragma_endtda (cpp_reader * pfile ATTRIBUTE_UNUSED) { tree x; - + if (pragma_lex (&x) != CPP_EOF) warning (OPT_Wpragmas, "junk at end of %<#pragma%> ghs endtda"); - + pop_data_area (DATA_AREA_TDA); } @@ -253,10 +253,10 @@ void ghs_pragma_endsda (cpp_reader * pfile ATTRIBUTE_UNUSED) { tree x; - + if (pragma_lex (&x) != CPP_EOF) warning (OPT_Wpragmas, "junk at end of %<#pragma%> ghs endsda"); - + pop_data_area (DATA_AREA_SDA); } @@ -264,9 +264,9 @@ void ghs_pragma_endzda (cpp_reader * pfile ATTRIBUTE_UNUSED) { tree x; - + if (pragma_lex (&x) != CPP_EOF) warning (OPT_Wpragmas, "junk at end of %<#pragma%> ghs endzda"); - + pop_data_area (DATA_AREA_ZDA); } |