varasm.c (emit_bss): Remove redundant guard.

The whole emit_bss is wrapped in ifdef ASM_OUTPUT_ALIGNED_BSS

From-SVN: r222311
parent a497da4c
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.
2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment