diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-14 13:05:19 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-14 13:05:19 +0000 |
commit | 10689255b2456e896b39f50c4b77ffb13210e326 (patch) | |
tree | c49018889381b60860e9b3d78de310db9de5d2c3 | |
parent | 7bddd50a9444ff9e7a8086ed19012133df79098a (diff) | |
download | ppe42-gcc-10689255b2456e896b39f50c4b77ffb13210e326.tar.gz ppe42-gcc-10689255b2456e896b39f50c4b77ffb13210e326.zip |
* cselib.c, expr.c: Fix comment typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90620 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/cselib.c | 2 | ||||
-rw-r--r-- | gcc/expr.c | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d1150c42817..3f7f38fb2cb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -6,6 +6,8 @@ * emit-rtl.c (push_to_full_sequence): Remove. * rtl.h: Remove the corresponding prototype. + * cselib.c, expr.c: Fix comment typos. + 2004-11-13 Richard Henderson <rth@redhat.com> * calls.c (precompute_register_parameters): Force all PARALLELs diff --git a/gcc/cselib.c b/gcc/cselib.c index df22800114d..b57125bf9fa 100644 --- a/gcc/cselib.c +++ b/gcc/cselib.c @@ -707,7 +707,7 @@ new_cselib_val (unsigned int value, enum machine_mode mode) /* We use an alloc pool to allocate this RTL construct because it accounts for about 8% of the overall memory usage. We know precisely when we can have VALUE RTXen (when cselib is active) - so we don't need to put them in garbave collected memory. + so we don't need to put them in garbage collected memory. ??? Why should a VALUE be an RTX in the first place? */ e->u.val_rtx = pool_alloc (value_pool); memset (e->u.val_rtx, 0, RTX_HDR_SIZE); diff --git a/gcc/expr.c b/gcc/expr.c index 59da4fdbdea..f94993085cf 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -1559,7 +1559,7 @@ gen_group_rtx (rtx orig) /* A subroutine of emit_group_load. Arguments as for emit_group_load, except that values are placed in TMPS[i], and must later be moved - into corrosponding XEXP (XVECEXP (DST, 0, i), 0) element. */ + into corresponding XEXP (XVECEXP (DST, 0, i), 0) element. */ static void emit_group_load_1 (rtx *tmps, rtx dst, rtx orig_src, tree type, int ssize) |