aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/m68hc11
diff options
context:
space:
mode:
authorKazu Hirata <kazu@gcc.gnu.org>2004-01-30 23:16:23 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-01-30 23:16:23 +0000
commitbd5bd7ac814586764703bfafe74b3b123f03a202 (patch)
treef190f5aa757ea9e5e18f1e0342621c5711cb26c6 /gcc/config/m68hc11
parent808ededc6f474450d3df665f24e8561f37af8d1b (diff)
downloadgcc-bd5bd7ac814586764703bfafe74b3b123f03a202.zip
gcc-bd5bd7ac814586764703bfafe74b3b123f03a202.tar.gz
gcc-bd5bd7ac814586764703bfafe74b3b123f03a202.tar.bz2
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/m68hc11')
-rw-r--r--gcc/config/m68hc11/m68hc11.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/config/m68hc11/m68hc11.c b/gcc/config/m68hc11/m68hc11.c
index 3146978..5640798 100644
--- a/gcc/config/m68hc11/m68hc11.c
+++ b/gcc/config/m68hc11/m68hc11.c
@@ -5504,6 +5504,8 @@ m68hc11_rtx_costs (rtx x, int code, int outer_code, int *total)
}
+/* Worker function for TARGET_ASM_FILE_START. */
+
static void
m68hc11_file_start (void)
{
@@ -5513,6 +5515,8 @@ m68hc11_file_start (void)
}
+/* Worker function for TARGET_ASM_CONSTRUCTOR. */
+
static void
m68hc11_asm_out_constructor (rtx symbol, int priority)
{
@@ -5520,6 +5524,8 @@ m68hc11_asm_out_constructor (rtx symbol, int priority)
fprintf (asm_out_file, "\t.globl\t__do_global_ctors\n");
}
+/* Worker function for TARGET_ASM_DESTRUCTOR. */
+
static void
m68hc11_asm_out_destructor (rtx symbol, int priority)
{
@@ -5527,6 +5533,8 @@ m68hc11_asm_out_destructor (rtx symbol, int priority)
fprintf (asm_out_file, "\t.globl\t__do_global_dtors\n");
}
+/* Worker function for TARGET_STRUCT_VALUE_RTX. */
+
static rtx
m68hc11_struct_value_rtx (tree fntype ATTRIBUTE_UNUSED,
int incoming ATTRIBUTE_UNUSED)