From f0ee2ebc3ae6f7c7bcfb01464d849b448283f6e6 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Tue, 31 Jan 1995 18:55:26 +0000 Subject: [PATCH] (ASM_OUTPUT_SECTION_NAME): Use asm_out_text_file for functions. From-SVN: r8843 --- gcc/config/mips/elf64.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gcc/config/mips/elf64.h b/gcc/config/mips/elf64.h index 8a6736e0922..76d845934ea 100644 --- a/gcc/config/mips/elf64.h +++ b/gcc/config/mips/elf64.h @@ -77,12 +77,13 @@ do { \ NULL_TREE. Some target formats do not support arbitrary sections. Do not define this macro in such cases. */ -#define ASM_OUTPUT_SECTION_NAME(FILE, DECL, NAME) \ +#define ASM_OUTPUT_SECTION_NAME(F, DECL, NAME) \ do { \ + extern FILE *asm_out_text_file; \ if (TREE_CODE (DECL) == FUNCTION_DECL) \ - fprintf (FILE, "\t.section %s,\"ax\",@progbits\n", (NAME)); \ + fprintf (asm_out_text_file, "\t.section %s,\"ax\",@progbits\n", (NAME)); \ else if (TREE_READONLY (DECL)) \ - fprintf (FILE, "\t.section %s,\"a\",@progbits\n", (NAME)); \ + fprintf (F, "\t.section %s,\"a\",@progbits\n", (NAME)); \ else \ - fprintf (FILE, "\t.section %s,\"aw\",@progbits\n", (NAME)); \ + fprintf (F, "\t.section %s,\"aw\",@progbits\n", (NAME)); \ } while (0) -- 2.30.2