From: Kazu Hirata Date: Thu, 11 May 2000 05:54:47 +0000 (+0000) Subject: * combine.c (try_combine): Fix a typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=02359929a645fc983957b0f6d671cbf88d7a9ad2;p=gcc.git * combine.c (try_combine): Fix a typo. From-SVN: r33837 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a17ca24d092..9289810cc99 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-05-10 Kazu Hirata + + * combine.c (try_combine): Fix a typo. + Wed May 10 21:31:44 2000 Jim Wilson * config/ia64/ia64.md (insv): Add comment. diff --git a/gcc/combine.c b/gcc/combine.c index 6c14228d1f1..5d0806ddb79 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -1480,7 +1480,7 @@ try_combine (i3, i2, i1, new_direct_jump_p) register rtx i3, i2, i1; register int *new_direct_jump_p; { - /* New patterns for I3 and I3, respectively. */ + /* New patterns for I3 and I2, respectively. */ rtx newpat, newi2pat = 0; /* Indicates need to preserve SET in I1 or I2 in I3 if it is not dead. */ int added_sets_1, added_sets_2;