aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-math-opts.c
diff options
context:
space:
mode:
authorKyrylo Tkachov <kyrylo.tkachov@arm.com>2016-03-08 13:39:09 +0000
committerKyrylo Tkachov <ktkachov@gcc.gnu.org>2016-03-08 13:39:09 +0000
commit6edbcfc3f49faf16204e2b2907d0dc47f461aa3e (patch)
tree73110748158f6586514a4c539f76930d14510058 /gcc/tree-ssa-math-opts.c
parent12b81409d97f6d617f58f974c6cbedc6bf9f5552 (diff)
downloadgcc-6edbcfc3f49faf16204e2b2907d0dc47f461aa3e.zip
gcc-6edbcfc3f49faf16204e2b2907d0dc47f461aa3e.tar.gz
gcc-6edbcfc3f49faf16204e2b2907d0dc47f461aa3e.tar.bz2
[obvious] Fix typo in tree-ssa-math-opts.c
* tree-ssa-math-opts.c: Fix typo in comment. From-SVN: r234058
Diffstat (limited to 'gcc/tree-ssa-math-opts.c')
-rw-r--r--gcc/tree-ssa-math-opts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-math-opts.c b/gcc/tree-ssa-math-opts.c
index 2215b4d..4626022 100644
--- a/gcc/tree-ssa-math-opts.c
+++ b/gcc/tree-ssa-math-opts.c
@@ -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