From 1c9a32c2d5e7f60f5092437b3232d83a49702316 Mon Sep 17 00:00:00 2001 From: Catherine Moore Date: Tue, 6 Oct 1998 13:47:21 +0000 Subject: [PATCH] sysv4.h (ASM_OUTPUT_SECTION_NAME): Don't check for flag_function_sections. * config/sparc/sysv4.h (ASM_OUTPUT_SECTION_NAME): Don't check for flag_function_sections. From-SVN: r22868 --- gcc/ChangeLog | 5 +++++ gcc/config/sparc/sysv4.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a3e61d6ffa8..0259d7edbfc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Tue Oct 6 15:45:15 1998 Catherine Moore + + * config/sparc/sysv4.h (ASM_OUTPUT_SECTION_NAME): Don't + check for flag_function_sections. + Tue Oct 6 20:02:31 1998 J"orn Rennecke * cse.c (insert_regs): Fix bug in Sep 24 change. diff --git a/gcc/config/sparc/sysv4.h b/gcc/config/sparc/sysv4.h index 5a614e5ffa9..572b9dcde73 100644 --- a/gcc/config/sparc/sysv4.h +++ b/gcc/config/sparc/sysv4.h @@ -193,8 +193,8 @@ do { ASM_OUTPUT_ALIGN ((FILE), Pmode == SImode ? 2 : 3); \ #define ASM_OUTPUT_SECTION_NAME(FILE, DECL, NAME, RELOC) \ do { \ if ((DECL) && TREE_CODE (DECL) == FUNCTION_DECL) \ - fprintf (FILE, ".section\t\"%s%s\",#alloc,#execinstr\n", \ - flag_function_sections ? ".text%" : "", (NAME)); \ + fprintf (FILE, ".section\t\"%s\",#alloc,#execinstr\n", \ + (NAME)); \ else if ((DECL) && DECL_READONLY_SECTION (DECL, RELOC)) \ fprintf (FILE, ".section\t\"%s\",#alloc\n", (NAME)); \ else \ -- 2.30.2