varasm.c (emit_bss): Remove redundant guard.
authoraldot <aldot@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 22 Apr 2015 08:16:17 +0000 (08:16 +0000)
committeraldot <aldot@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 22 Apr 2015 08:16:17 +0000 (08:16 +0000)
The whole emit_bss is wrapped in ifdef ASM_OUTPUT_ALIGNED_BSS

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@222311 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/varasm.c

index 0f17b7c..6dcf7d0 100644 (file)
@@ -1,5 +1,9 @@
 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>
index e8d996c..1597de1 100644 (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