]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
[obvious] Fix typo in tree-ssa-math-opts.c
authorKyrylo Tkachov <kyrylo.tkachov@arm.com>
Tue, 8 Mar 2016 13:39:09 +0000 (13:39 +0000)
committerKyrylo Tkachov <ktkachov@gcc.gnu.org>
Tue, 8 Mar 2016 13:39:09 +0000 (13:39 +0000)
* tree-ssa-math-opts.c: Fix typo in comment.

From-SVN: r234058

gcc/ChangeLog
gcc/tree-ssa-math-opts.c

index 3bfd5f45f90863913163ecbb9afa40964fa1e85c..3a9b3d5a2c73059fda5786e1b6abc28486aadf09 100644 (file)
@@ -1,3 +1,7 @@
+2016-03-08  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
+
+       * tree-ssa-math-opts.c: Fix typo in comment.
+
 2016-03-08  Jakub Jelinek  <jakub@redhat.com>
 
        PR target/70110
index 2215b4dc709213730a92b533f8774464a36efaf4..4626022b8b81c74e72d808d63d4c4ed4e7ea963a 100644 (file)
@@ -42,7 +42,7 @@ along with GCC; see the file COPYING3.  If not see
 
    First of all, with some experiments it was found out that the
    transformation is not always useful if there are only two divisions
-   hy the same divisor.  This is probably because modern processors
+   by the same divisor.  This is probably because modern processors
    can pipeline the divisions; on older, in-order processors it should
    still be effective to optimize two divisions by the same number.
    We make this a param, and it shall be called N in the remainder of