aboutsummaryrefslogtreecommitdiff
path: root/gcc/lists.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@gcc.gnu.org>2002-05-30 20:55:11 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-05-30 20:55:11 +0000
commite11e816ec758b244fc01ce2e51a363a0967ade19 (patch)
tree5571e1edfbc286f33f9f02aa9fb4c0a973d14f11 /gcc/lists.c
parent76ae32d753d65655f9adcc8b8b2198ad11758407 (diff)
downloadgcc-e11e816ec758b244fc01ce2e51a363a0967ade19.zip
gcc-e11e816ec758b244fc01ce2e51a363a0967ade19.tar.gz
gcc-e11e816ec758b244fc01ce2e51a363a0967ade19.tar.bz2
langhooks.c: Fix formatting.
* langhooks.c: Fix formatting. * langhooks.h: Likewise. * lcm.c: Likewise. * libgcc2.c: Likewise. * lists.c: Likewise. * local-alloc.c: Likewise. * loop.c: Likewise. * loop.h: Likewise. From-SVN: r54070
Diffstat (limited to 'gcc/lists.c')
-rw-r--r--gcc/lists.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/lists.c b/gcc/lists.c
index 0adacfb..88abc54 100644
--- a/gcc/lists.c
+++ b/gcc/lists.c
@@ -62,7 +62,7 @@ free_list (listp, unused_listp)
}
/* This call is used in place of a gen_rtx_INSN_LIST. If there is a cached
- node available, we'll use it, otherwise a call to gen_rtx_INSN_LIST
+ node available, we'll use it, otherwise a call to gen_rtx_INSN_LIST
is made. */
rtx
alloc_INSN_LIST (val, next)
@@ -85,7 +85,7 @@ alloc_INSN_LIST (val, next)
}
/* This call is used in place of a gen_rtx_EXPR_LIST. If there is a cached
- node available, we'll use it, otherwise a call to gen_rtx_EXPR_LIST
+ node available, we'll use it, otherwise a call to gen_rtx_EXPR_LIST
is made. */
rtx
alloc_EXPR_LIST (kind, val, next)
@@ -118,14 +118,14 @@ zap_lists (dummy)
unused_insn_list = NULL;
}
-void
+void
init_EXPR_INSN_LIST_cache ()
{
ggc_add_root (&unused_expr_list, 1, 1, zap_lists);
}
/* This function will free up an entire list of EXPR_LIST nodes. */
-void
+void
free_EXPR_LIST_list (listp)
rtx *listp;
{
@@ -135,7 +135,7 @@ free_EXPR_LIST_list (listp)
}
/* This function will free up an entire list of INSN_LIST nodes. */
-void
+void
free_INSN_LIST_list (listp)
rtx *listp;
{
@@ -145,7 +145,7 @@ free_INSN_LIST_list (listp)
}
/* This function will free up an individual EXPR_LIST node. */
-void
+void
free_EXPR_LIST_node (ptr)
rtx ptr;
{
@@ -154,7 +154,7 @@ free_EXPR_LIST_node (ptr)
}
/* This function will free up an individual INSN_LIST node. */
-void
+void
free_INSN_LIST_node (ptr)
rtx ptr;
{