diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-10 07:37:51 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-10 07:37:51 +0000 |
commit | fd9d9afcbc1087ad23874cf56cbf3254e1efdd6e (patch) | |
tree | 314e78064e28d771d97f853bf0daf3789dce1f23 | |
parent | 108251d92bf91ea27c278846fd2f3f2c755fc1b0 (diff) | |
download | gcc-fd9d9afcbc1087ad23874cf56cbf3254e1efdd6e.tar.gz |
* combine.c (can_combine_p): Fix a comment typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48712 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/combine.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e7296c5547f..4b23b1fbdb3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-01-10 Kazu Hirata <kazu@hxi.com> + + * combine.c (can_combine_p): Fix a comment typo. + 2002-01-09 Zack Weinberg <zack@codesourcery.com> * Makefile.in (s-gencheck, s-options, s-specs): Handle an diff --git a/gcc/combine.c b/gcc/combine.c index d640bc447f4..1215a65e9c0 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -950,7 +950,7 @@ can_combine_p (insn, i3, pred, succ, pdest, psrc) for the SH4 port. */ case USE: /* Combining an isolated USE doesn't make sense. - We depend here on combinable_i3_pat to reject them. */ + We depend here on combinable_i3pat to reject them. */ /* The code below this loop only verifies that the inputs of the SET in INSN do not change. We call reg_set_between_p to verify that the REG in the USE does not change between |