From c6a2438aaf2ceeb137d21d67b00edf27a92104c0 Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Sun, 20 Apr 2003 18:20:39 +0000 Subject: 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 --- gcc/config/v850/v850.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'gcc/config/v850/v850.c') diff --git a/gcc/config/v850/v850.c b/gcc/config/v850/v850.c index b3cd34e..618af25 100644 --- a/gcc/config/v850/v850.c +++ b/gcc/config/v850/v850.c @@ -61,8 +61,8 @@ static tree v850_handle_interrupt_attribute PARAMS ((tree *, tree, tree, int, bo static tree v850_handle_data_area_attribute PARAMS ((tree *, tree, tree, int, bool *)); static void v850_insert_attributes PARAMS ((tree, tree *)); static void v850_select_section PARAMS ((tree, int, unsigned HOST_WIDE_INT)); -static void v850_encode_data_area PARAMS ((tree)); -static void v850_encode_section_info PARAMS ((tree, int)); +static void v850_encode_data_area PARAMS ((tree, rtx)); +static void v850_encode_section_info PARAMS ((tree, rtx, int)); /* Information about the various small memory areas. */ struct small_memory_info small_memory[ (int)SMALL_MEMORY_max ] = @@ -2324,11 +2324,11 @@ v850_interrupt_function_p (func) static void -v850_encode_data_area (decl) +v850_encode_data_area (decl, symbol) tree decl; + rtx symbol; { int flags; - rtx symbol; /* Map explict sections into the appropriate attribute */ if (v850_get_data_area (decl) == DATA_AREA_NORMAL) @@ -2368,7 +2368,6 @@ v850_encode_data_area (decl) return; } - symbol = XEXP (DECL_RTL (decl), 0); flags = SYMBOL_REF_FLAGS (symbol); switch (v850_get_data_area (decl)) { @@ -2381,15 +2380,16 @@ v850_encode_data_area (decl) } static void -v850_encode_section_info (decl, first) +v850_encode_section_info (decl, rtl, first) tree decl; + rtx rtl; int first; { - default_encode_section_info (decl, first); + default_encode_section_info (decl, rtl, first); if (TREE_CODE (decl) == VAR_DECL && (TREE_STATIC (decl) || DECL_EXTERNAL (decl))) - v850_encode_data_area (decl); + v850_encode_data_area (decl, XEXP (rtl, 0)); } /* Return true if the given RTX is a register which can be restored -- cgit v1.1