From 6edbcfc3f49faf16204e2b2907d0dc47f461aa3e Mon Sep 17 00:00:00 2001 From: Kyrylo Tkachov Date: Tue, 8 Mar 2016 13:39:09 +0000 Subject: [PATCH] [obvious] Fix typo in tree-ssa-math-opts.c * tree-ssa-math-opts.c: Fix typo in comment. From-SVN: r234058 --- gcc/ChangeLog | 4 ++++ gcc/tree-ssa-math-opts.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3bfd5f45f90..3a9b3d5a2c7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2016-03-08 Kyrylo Tkachov + + * tree-ssa-math-opts.c: Fix typo in comment. + 2016-03-08 Jakub Jelinek PR target/70110 diff --git a/gcc/tree-ssa-math-opts.c b/gcc/tree-ssa-math-opts.c index 2215b4dc709..4626022b8b8 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