From: Bob Wilson Date: Thu, 27 Jun 2002 23:35:13 +0000 (+0000) Subject: xtensa.h (ASM_OUTPUT_POOL_PROLOGUE): Pass flag_function_sections as new 3rd arg to... X-Git-Tag: releases/gcc-3.1.1~92 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e977dae6114eb05a18416a3ff52602f2e5c4399a;p=thirdparty%2Fgcc.git 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 --- 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) \ { \