public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-1249] aix: Use assemble_name to output BSS section name.
@ 2021-06-06 20:38 David Edelsohn
  0 siblings, 0 replies; only message in thread
From: David Edelsohn @ 2021-06-06 20:38 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:03d921abe60fe9ff54a3c449eff1531e73a19215

commit r12-1249-g03d921abe60fe9ff54a3c449eff1531e73a19215
Author: David Edelsohn <dje.gcc@gmail.com>
Date:   Wed Jun 2 13:32:45 2021 -0400

    aix: Use assemble_name to output BSS section name.
    
            The code to emit BSS CSECT needs to support user assembler name.
    
            * config/rs6000/rs6000.c (rs6000_xcoff_asm_output_aligned_decl_common):
            Use assemble_name to output BSS section name.

Diff:
---
 gcc/config/rs6000/rs6000.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index 835af7708f9..b01bb5c8191 100644
--- a/gcc/config/rs6000/rs6000.c
+++ b/gcc/config/rs6000/rs6000.c
@@ -21654,10 +21654,16 @@ rs6000_xcoff_asm_output_aligned_decl_common (FILE *stream,
 
       /* Globalize TLS BSS.  */
       if (TREE_PUBLIC (decl) && DECL_THREAD_LOCAL_P (decl))
-	fprintf (stream, "\t.globl %s\n", name);
+	{
+	  fputs (GLOBAL_ASM_OP, stream);
+	  assemble_name (stream, name);
+	  fputc ('\n', stream);
+	}
 
       /* Switch to section and skip space.  */
-      fprintf (stream, "\t.csect %s,%u\n", name, align2);
+      fputs ("\t.csect ", stream);
+      assemble_name (stream, name);
+      fprintf (stream, ",%u\n", align2);
       ASM_DECLARE_OBJECT_NAME (stream, name, decl);
       ASM_OUTPUT_SKIP (stream, size ? size : 1);
       return;


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-06-06 20:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-06 20:38 [gcc r12-1249] aix: Use assemble_name to output BSS section name David Edelsohn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).