[gcc/devel/ranger] Delete duplicate .align output.

Aldy Hernandez aldyh@gcc.gnu.org
Wed Jun 17 20:02:22 GMT 2020


https://gcc.gnu.org/g:46b7d819f7c22b9be7eddbd1d8956c6ce2245c64

commit 46b7d819f7c22b9be7eddbd1d8956c6ce2245c64
Author: John David Anglin <danglin@gcc.gnu.org>
Date:   Sun Mar 29 16:34:59 2020 +0000

    Delete duplicate .align output.
    
            2020-03-29  John David Anglin  <dave.anglin@bell.net>
    
            * gcc/config/pa/pa.c (pa_asm_output_aligned_bss): Delete duplicate
            .align output.

Diff:
---
 gcc/ChangeLog      | 5 +++++
 gcc/config/pa/pa.c | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 86ad683a6cb..3cff237b30f 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2020-03-29  John David Anglin  <dave.anglin@bell.net>
+
+	* gcc/config/pa/pa.c (pa_asm_output_aligned_bss): Delete duplicate
+	.align output.
+
 2020-03-28  Jakub Jelinek  <jakub@redhat.com>
 
 	PR c/93573
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c
index a662de96ac9..711234e597a 100644
--- a/gcc/config/pa/pa.c
+++ b/gcc/config/pa/pa.c
@@ -8726,7 +8726,6 @@ pa_asm_output_aligned_bss (FILE *stream,
 			   unsigned int align)
 {
   switch_to_section (bss_section);
-  fprintf (stream, "\t.align %u\n", align / BITS_PER_UNIT);
 
 #ifdef ASM_OUTPUT_TYPE_DIRECTIVE
   ASM_OUTPUT_TYPE_DIRECTIVE (stream, name, "object");


More information about the Gcc-cvs mailing list