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:
parent
a497da4c73
commit
38b7a8dfc9
@ -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>
|
2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
|
||||||
|
|
||||||
* config/c6x/c6x.h (TARGET_CPU_CPP_BUILTINS): Add unk_isa.
|
* config/c6x/c6x.h (TARGET_CPU_CPP_BUILTINS): Add unk_isa.
|
||||||
|
@ -1957,11 +1957,9 @@ emit_bss (tree decl ATTRIBUTE_UNUSED,
|
|||||||
unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
|
unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
|
||||||
unsigned HOST_WIDE_INT rounded 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,
|
ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size,
|
||||||
get_variable_align (decl));
|
get_variable_align (decl));
|
||||||
return true;
|
return true;
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user