diff options
author | Zack Weinberg <zack@gcc.gnu.org> | 2003-04-20 18:20:39 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2003-04-20 18:20:39 +0000 |
commit | c6a2438aaf2ceeb137d21d67b00edf27a92104c0 (patch) | |
tree | 6af2bc9bef24c55c4233dbdc955842df62042749 /gcc/config/mcore | |
parent | 8c7d377fa2a94ea39f7eb38df8aeb776452f49f0 (diff) | |
download | gcc-c6a2438aaf2ceeb137d21d67b00edf27a92104c0.zip gcc-c6a2438aaf2ceeb137d21d67b00edf27a92104c0.tar.gz gcc-c6a2438aaf2ceeb137d21d67b00edf27a92104c0.tar.bz2 |
target.h (encode_section_info): Add new argument carrying the RTL to be modified by the hook.
* target.h (encode_section_info): Add new argument carrying
the RTL to be modified by the hook.
* varasm.c (make_decl_rtl, output_constant_def): Update calls
to encode_section_info.
(default_encode_section_info): Take and use RTL argument,
don't use TREE_CST_RTL or DECL_RTL.
* output.h: Update prototype of default_encode_section_info.
* config/darwin.h (ASM_DECLARE_OBJECT_NAME)
(ASM_DECLARE_FUNCTION_NAME, ASM_OUTPUT_ALIGNED_DECL_LOCAL):
Update calls to encode_section_info.
* config/darwin.c, config/arm/arm.c, config/arm/pe.c
* config/h8300/h8300.c, config/i386/winnt.c, config/m32r/m32r.c
* config/m68hc11/m68hc11.c, config/m88k/m88k.c, config/mcore/mcore.c
* config/mips/mips.c, config/mmix/mmix.c, config/pa/pa.c
* config/romp/romp.c, config/rs6000/rs6000.c, config/s390/s390.c
* config/v850/v850.c (TARGET_ENCODE_SECTION_INFO definitions):
Take and use RTL argument, don't use TREE_CST_RTL or DECL_RTL,
except for PE dllimport/dllexport. Update calls to
default_encode_section_info.
* config/darwin-protos.h, config/arm/arm-protos.h, config/i386-protos.h:
Update prototypes.
* doc/tm.texi (TARGET_ENCODE_SECTION_INFO): Update.
From-SVN: r65859
Diffstat (limited to 'gcc/config/mcore')
-rw-r--r-- | gcc/config/mcore/mcore.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/config/mcore/mcore.c b/gcc/config/mcore/mcore.c index e437f38..a7c2d37 100644 --- a/gcc/config/mcore/mcore.c +++ b/gcc/config/mcore/mcore.c @@ -139,7 +139,7 @@ static void mcore_asm_named_section PARAMS ((const char *, unsigned int)); #endif static void mcore_unique_section PARAMS ((tree, int)); -static void mcore_encode_section_info PARAMS ((tree, int)); +static void mcore_encode_section_info PARAMS ((tree, rtx, int)); static const char *mcore_strip_name_encoding PARAMS ((const char *)); static int mcore_const_costs PARAMS ((rtx, RTX_CODE)); static int mcore_and_cost PARAMS ((rtx)); @@ -3464,8 +3464,9 @@ mcore_dllimport_p (decl) install some info in the .drective (PE) or .exports (ELF) sections. */ static void -mcore_encode_section_info (decl, first) +mcore_encode_section_info (decl, rtl, first) tree decl; + rtx rtl ATTRIBUTE_UNUSED; int first ATTRIBUTE_UNUSED; { /* Mark the decl so we can tell from the rtl whether the object is |