aboutsummaryrefslogtreecommitdiff
path: root/gcc/gimple-predicate-analysis.cc
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2022-10-07 09:08:46 +0200
committerJakub Jelinek <jakub@redhat.com>2022-10-07 09:08:46 +0200
commite66236c6e9eb83730dde15f359f2a21cb603887b (patch)
tree7593038711f21bce00e300f543bfbfb3af55325d /gcc/gimple-predicate-analysis.cc
parent88f04e90f63f08620cc9cd2f059a1315b70bed3b (diff)
downloadgcc-e66236c6e9eb83730dde15f359f2a21cb603887b.zip
gcc-e66236c6e9eb83730dde15f359f2a21cb603887b.tar.gz
gcc-e66236c6e9eb83730dde15f359f2a21cb603887b.tar.bz2
Fix comment typos
When looking at tree-inline.cc I've noticed a comment typo and grepped for similar typos elsewhere. 2022-10-07 Jakub Jelinek <jakub@redhat.com> * ipa-prop.h (ipa_constant_data): Fix comment typo. * value-range.cc (irange::irange_contains_p): Likewise. * value-relation.cc (dom_oracle::set_one_relation): Likewise. * gimple-predicate-analysis.cc (predicate::simplify_4): Likewise. * tree-inline.cc (remap_ssa_name): Likewise.
Diffstat (limited to 'gcc/gimple-predicate-analysis.cc')
-rw-r--r--gcc/gimple-predicate-analysis.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple-predicate-analysis.cc b/gcc/gimple-predicate-analysis.cc
index bc9ed84..5013a44 100644
--- a/gcc/gimple-predicate-analysis.cc
+++ b/gcc/gimple-predicate-analysis.cc
@@ -1369,7 +1369,7 @@ predicate::simplify_3 ()
/* Implement rule 4 for the OR predicate PREDS:
2) ((x AND y) != 0) OR (x != 0 AND y != 0) is equivalent to
- (x != 0 ANd y != 0). */
+ (x != 0 AND y != 0). */
bool
predicate::simplify_4 ()