aboutsummaryrefslogtreecommitdiff
path: root/gcc/ipa-predicate.h
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2019-11-23 12:44:51 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2019-11-23 12:44:51 +0100
commit956d615d66d06a9810000a5b7941be3ee1da7f8e (patch)
treec83ab08bf31cd219c19b4ce43217b5a462726223 /gcc/ipa-predicate.h
parent8d0d7a63019a7d67943d1867348673e3ca3dc824 (diff)
downloadgcc-956d615d66d06a9810000a5b7941be3ee1da7f8e.zip
gcc-956d615d66d06a9810000a5b7941be3ee1da7f8e.tar.gz
gcc-956d615d66d06a9810000a5b7941be3ee1da7f8e.tar.bz2
ipa-fnsummary.c: Fix comment typos.
* ipa-fnsummary.c: Fix comment typos. * ipa-ref.h: Likewise. * ipa-predicate.h: Likewise. * ipa-split.c: Likewise. * ipa-inline-analysis.c: Likewise. * ipa-predicate.c: Likewise. * ipa-devirt.c: Likewise. * ipa-icf.h: Likewise. * profile-count.c: Likewise. * ipa-icf.c: Likewise. (sem_function::equals_wpa): Fix typos in dump messages. * ipa-icf-gimple.h: Fix comment typos. * ipa-inline-transform.c: Likewise. * ipa-polymorphic-call.c: Likewise. * ipa-fnsummary.h: Likewise. * ipa-inline.c: Likewise. (dump_inline_stats): Fix typo in debug dump message. * profile-count.h: Fix comment typos. From-SVN: r278643
Diffstat (limited to 'gcc/ipa-predicate.h')
-rw-r--r--gcc/ipa-predicate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ipa-predicate.h b/gcc/ipa-predicate.h
index 25cd5f2..265b1d1 100644
--- a/gcc/ipa-predicate.h
+++ b/gcc/ipa-predicate.h
@@ -62,7 +62,7 @@ struct GTY(()) condition
passed by reference and by value. */
unsigned by_ref : 1;
/* A set of sequential operations on the parameter, which can be seen as
- a mathmatical function on the parameter. */
+ a mathematical function on the parameter. */
expr_eval_ops param_ops;
};
@@ -89,7 +89,7 @@ struct inline_param_summary
typedef vec<condition, va_gc> *conditions;
-/* Predicates are used to repesent function parameters (such as runtime)
+/* Predicates are used to represent function parameters (such as runtime)
which depend on a context function is called in.
Predicates are logical formulas in conjunctive-disjunctive form consisting
@@ -117,7 +117,7 @@ public:
first_dynamic_condition = 2
};
- /* Maximal number of conditions predicate can reffer to. This is limited
+ /* Maximal number of conditions predicate can refer to. This is limited
by using clause_t to be 32bit. */
static const int num_conditions = 32;