diff options
-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 e7296c5..4b23b1f 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 d640bc4..1215a65 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 |