varasm.c (emit_bss): Remove redundant guard.

The whole emit_bss is wrapped in ifdef ASM_OUTPUT_ALIGNED_BSS

From-SVN: r222311
This commit is contained in:
Bernhard Reutner-Fischer 2015-04-22 10:16:17 +02:00
parent a497da4c73
commit 38b7a8dfc9
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
* varasm.c (emit_bss): Remove redundant guard.
2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
* config/c6x/c6x.h (TARGET_CPU_CPP_BUILTINS): Add unk_isa.

View File

@ -1957,11 +1957,9 @@ emit_bss (tree decl ATTRIBUTE_UNUSED,
unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
{
#if defined ASM_OUTPUT_ALIGNED_BSS
ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size,
get_variable_align (decl));
return true;
#endif
}
#endif