diff options
author | Kazu Hirata <kazu@gcc.gnu.org> | 2004-01-30 23:16:23 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-01-30 23:16:23 +0000 |
commit | bd5bd7ac814586764703bfafe74b3b123f03a202 (patch) | |
tree | f190f5aa757ea9e5e18f1e0342621c5711cb26c6 /gcc/config/avr | |
parent | 808ededc6f474450d3df665f24e8561f37af8d1b (diff) | |
download | gcc-bd5bd7ac814586764703bfafe74b3b123f03a202.tar.gz |
alpha.c: Remove mentions of deprecates macros in comments...
* config/alpha/alpha.c: Remove mentions of deprecates macros
in comments, remove some target-independent comments about target
macros, and/or add minimal function comments for target hook
implementations.
* config/avr/avr.c: Likewise.
* config/ia64/ia64.h: Likewise.
* config/ip2k/ip2k.c: Likewise.
* config/iq2000/iq2000.c: Likewise.
* config/m32r/m32r.h: Likewise.
* config/m68hc11/m68hc11.c: Likewise.
* config/mcore/mcore.c: Likewise.
* config/mmix/mmix.c: Likewise.
* config/mn10300/mn10300.c: Likewise.
* config/pa/pa.c: Likewise.
* config/pdp11/pdp11.c: Likewise.
* config/rs6000/rs6000.h: Likewise.
* config/sh/sh.c: Likewise.
* config/sh/sh.h: Likewise.
* config/sparc/sparc.c: Likewise.
* config/sparc/sparc.h: Likewise.
* config/stormy16/stormy16.c: Likewise.
* config/xtensa/xtensa.c: Likewise.
From-SVN: r77005
Diffstat (limited to 'gcc/config/avr')
-rw-r--r-- | gcc/config/avr/avr.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config/avr/avr.c b/gcc/config/avr/avr.c index dc60d18fcb8..80e6fa9ed38 100644 --- a/gcc/config/avr/avr.c +++ b/gcc/config/avr/avr.c @@ -5361,6 +5361,8 @@ avr_out_sbxx_branch (rtx insn, rtx operands[]) return ""; } +/* Worker function for TARGET_ASM_CONSTRUCTOR. */ + static void avr_asm_out_ctor (rtx symbol, int priority) { @@ -5368,6 +5370,8 @@ avr_asm_out_ctor (rtx symbol, int priority) default_ctor_section_asm_out_constructor (symbol, priority); } +/* Worker function for TARGET_ASM_DESTRUCTOR. */ + static void avr_asm_out_dtor (rtx symbol, int priority) { @@ -5375,6 +5379,8 @@ avr_asm_out_dtor (rtx symbol, int priority) default_dtor_section_asm_out_destructor (symbol, priority); } +/* Worker function for TARGET_RETURN_IN_MEMORY. */ + static bool avr_return_in_memory (tree type, tree fntype ATTRIBUTE_UNUSED) { |