[obvious] Fix typo in tree-ssa-math-opts.c
authorktkachov <ktkachov@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 8 Mar 2016 13:39:09 +0000 (13:39 +0000)
committerktkachov <ktkachov@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 8 Mar 2016 13:39:09 +0000 (13:39 +0000)
* tree-ssa-math-opts.c: Fix typo in comment.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@234058 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 3bfd5f4..3a9b3d5 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 2215b4d..4626022 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