aboutsummaryrefslogtreecommitdiff
path: root/gcc/ipa-cp.c
diff options
context:
space:
mode:
authorAldy Hernandez <aldyh@redhat.com>2015-07-13 04:46:34 +0000
committerAldy Hernandez <aldyh@gcc.gnu.org>2015-07-13 04:46:34 +0000
commit026c3cfd5e92e7f358290921984b57e1b433e658 (patch)
treeb334918063791e89f97a111eb02e3d0c9f8a766e /gcc/ipa-cp.c
parent7e8ce0f35920ca44b790a742ab1e5058034c7fc2 (diff)
downloadgcc-026c3cfd5e92e7f358290921984b57e1b433e658.zip
gcc-026c3cfd5e92e7f358290921984b57e1b433e658.tar.gz
gcc-026c3cfd5e92e7f358290921984b57e1b433e658.tar.bz2
Fix double word typos.
From-SVN: r225726
Diffstat (limited to 'gcc/ipa-cp.c')
-rw-r--r--gcc/ipa-cp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ipa-cp.c b/gcc/ipa-cp.c
index 41501ed..60a60ce 100644
--- a/gcc/ipa-cp.c
+++ b/gcc/ipa-cp.c
@@ -250,7 +250,7 @@ class ipcp_param_lattices
public:
/* Lattice describing the value of the parameter itself. */
ipcp_lattice<tree> itself;
- /* Lattice describing the the polymorphic contexts of a parameter. */
+ /* Lattice describing the polymorphic contexts of a parameter. */
ipcp_lattice<ipa_polymorphic_call_context> ctxlat;
/* Lattices describing aggregate parts. */
ipcp_agg_lattice *aggs;
@@ -1213,7 +1213,7 @@ ipcp_lattice<valtype>::add_value (valtype newval, cgraph_edge *cs,
if (values_count == PARAM_VALUE (PARAM_IPA_CP_VALUE_LIST_SIZE))
{
/* We can only free sources, not the values themselves, because sources
- of other values in this this SCC might point to them. */
+ of other values in this SCC might point to them. */
for (val = values; val; val = val->next)
{
while (val->sources)
@@ -3959,7 +3959,7 @@ cgraph_edge_brings_all_agg_vals_for_node (struct cgraph_edge *cs,
/* Given an original NODE and a VAL for which we have already created a
specialized clone, look whether there are incoming edges that still lead
into the old node but now also bring the requested value and also conform to
- all other criteria such that they can be redirected the the special node.
+ all other criteria such that they can be redirected the special node.
This function can therefore redirect the final edge in a SCC. */
template <typename valtype>