From e977dae6114eb05a18416a3ff52602f2e5c4399a Mon Sep 17 00:00:00 2001 From: Bob Wilson Date: Thu, 27 Jun 2002 23:35:13 +0000 Subject: [PATCH] xtensa.h (ASM_OUTPUT_POOL_PROLOGUE): Pass flag_function_sections as new 3rd arg to resolve_unique_section. * config/xtensa/xtensa.h (ASM_OUTPUT_POOL_PROLOGUE): Pass flag_function_sections as new 3rd arg to resolve_unique_section. From-SVN: r55047 --- gcc/ChangeLog | 5 +++++ gcc/config/xtensa/xtensa.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 41be19fa6c52..8751f5854300 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-06-27 Bob Wilson + + * config/xtensa/xtensa.h (ASM_OUTPUT_POOL_PROLOGUE): Pass + flag_function_sections as new 3rd arg to resolve_unique_section. + 2002-06-27 Neil Booth PR preprocessor/7070 diff --git a/gcc/config/xtensa/xtensa.h b/gcc/config/xtensa/xtensa.h index e03437a83eb6..d49f57bd849f 100644 --- a/gcc/config/xtensa/xtensa.h +++ b/gcc/config/xtensa/xtensa.h @@ -1665,7 +1665,7 @@ typedef struct xtensa_args { #define ASM_OUTPUT_POOL_PROLOGUE(FILE, FUNNAME, FUNDECL, SIZE) \ do { \ tree fnsection; \ - resolve_unique_section ((FUNDECL), 0); \ + resolve_unique_section ((FUNDECL), 0, flag_function_sections); \ fnsection = DECL_SECTION_NAME (FUNDECL); \ if (fnsection != NULL_TREE) \ { \ -- 2.47.2