]> gcc.gnu.org Git - gcc.git/commitdiff
(ASM_OUTPUT_SECTION_NAME): Use asm_out_text_file for functions.
authorDoug Evans <dje@gnu.org>
Tue, 31 Jan 1995 18:55:26 +0000 (18:55 +0000)
committerDoug Evans <dje@gnu.org>
Tue, 31 Jan 1995 18:55:26 +0000 (18:55 +0000)
From-SVN: r8843

gcc/config/mips/elf64.h

index 8a6736e09228b6a56c30da46da592f0aed2edabb..76d845934ea6e291f63b1c4a63a5bd3bb89009e5 100644 (file)
@@ -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)
This page took 0.063588 seconds and 5 git commands to generate.