aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2013-06-19 11:09:10 -0600
committerJeff Law <law@gcc.gnu.org>2013-06-19 11:09:10 -0600
commitecdbf306757a1c18e29a2920470438453dafe8f8 (patch)
tree7887da03199bb4c76f8a23fa25722e0cf14f929c /gcc
parenta0f88ffd21132c33435dfd125bd1b56c4dfe9939 (diff)
downloadgcc-ecdbf306757a1c18e29a2920470438453dafe8f8.zip
gcc-ecdbf306757a1c18e29a2920470438453dafe8f8.tar.gz
gcc-ecdbf306757a1c18e29a2920470438453dafe8f8.tar.bz2
tree-ssa-forwprop.c (simplify_bitwise_binary_boolean): Fix typo in comment.
* tree-ssa-forwprop.c (simplify_bitwise_binary_boolean): Fix typo in comment. From-SVN: r200208
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/tree-ssa-forwprop.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 0ecf5ba..bd60452 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,8 @@
2013-06-19 Jeff Law <law@redhat.com>
+ * tree-ssa-forwprop.c (simplify_bitwise_binary_boolean): Fix typo
+ in comment.
+
* tree-ssa-forwprop.c (simplify_bitwise_binary_boolean): New function.
(simplify_bitwise_binary): Use it to simpify certain binary ops on
booleans.
diff --git a/gcc/tree-ssa-forwprop.c b/gcc/tree-ssa-forwprop.c
index 29a0bb7..df19295 100644
--- a/gcc/tree-ssa-forwprop.c
+++ b/gcc/tree-ssa-forwprop.c
@@ -1881,7 +1881,7 @@ hoist_conversion_for_bitop_p (tree to, tree from)
then we can simplify the two statements into a single LT_EXPR or LE_EXPR
when code is BIT_AND_EXPR and BIT_IOR_EXPR respectively.
- If a simplification is mode, return TRUE, else return FALSE. */
+ If a simplification is made, return TRUE, else return FALSE. */
static bool
simplify_bitwise_binary_boolean (gimple_stmt_iterator *gsi,
enum tree_code code,