diff options
author | Marc Espie <espie@openbsd.org> | 2002-06-08 14:10:01 +0000 |
---|---|---|
committer | Marc Espie <espie@gcc.gnu.org> | 2002-06-08 14:10:01 +0000 |
commit | e36231584063923f764e9702451205dc4371d97d (patch) | |
tree | 451d062202e1c2d32bb49faf2a4fa8e62c3c0340 /gcc | |
parent | 272cdf589d977f2e80314649ab85581722f3ebcb (diff) | |
download | gcc-e36231584063923f764e9702451205dc4371d97d.zip gcc-e36231584063923f764e9702451205dc4371d97d.tar.gz gcc-e36231584063923f764e9702451205dc4371d97d.tar.bz2 |
* lists.c (free_list): Fix typo in comment.
From-SVN: r54374
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/lists.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8ff77809..c2a96df 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,6 @@ +2002-06-08 Marc Espie <espie@openbsd.org> + * lists.c (free_list): Fix typo in comment. + 2002-06-08 Andreas Jaeger <aj@suse.de> * lcm.c (optimize_mode_switching): Add unused attribute for diff --git a/gcc/lists.c b/gcc/lists.c index b57b138..58d90d3 100644 --- a/gcc/lists.c +++ b/gcc/lists.c @@ -37,7 +37,7 @@ static GTY ((deletable (""))) rtx unused_expr_list; /* This function will free an entire list of either EXPR_LIST or INSN_LIST - nodes. This is to be used only only lists that consist exclusively of + nodes. This is to be used only on lists that consist exclusively of nodes of one type only. This is only called by free_EXPR_LIST_list and free_INSN_LIST_list. */ static void |