v850.c (v850_handle_data_area_attribute): Fix fallthru comment.
* config/v850/v850.c (v850_handle_data_area_attribute): Fix fallthru comment. (v850_output_aligned_bss): Add missing break. From-SVN: r241513
This commit is contained in:
parent
b1a2b0badf
commit
d5356522e5
2 changed files with 6 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
|||
2016-10-25 Jeff Law <law@redhat.com>
|
||||
|
||||
* config/v850/v850.c (v850_handle_data_area_attribute): Fix fallthru
|
||||
comment.
|
||||
(v850_output_aligned_bss): Add missing break.
|
||||
|
||||
* config/m68k/m68k.c (m68k_get_reloc_decoration): Add gcc_unreachable.
|
||||
|
||||
2016-10-25 Martin Liska <mliska@suse.cz>
|
||||
|
|
|
@ -2122,7 +2122,7 @@ v850_handle_data_area_attribute (tree* node,
|
|||
*no_add_attrs = true;
|
||||
}
|
||||
|
||||
/* Drop through. */
|
||||
/* FALLTHRU */
|
||||
|
||||
case FUNCTION_DECL:
|
||||
area = v850_get_data_area (decl);
|
||||
|
@ -2477,6 +2477,7 @@ v850_output_aligned_bss (FILE * file,
|
|||
|
||||
case DATA_AREA_TDA:
|
||||
switch_to_section (tdata_section);
|
||||
break;
|
||||
|
||||
default:
|
||||
switch_to_section (bss_section);
|
||||
|
|
Loading…
Add table
Reference in a new issue