diff options
-rw-r--r-- | gcc/ChangeLog | 11 | ||||
-rw-r--r-- | gcc/cgraph.c | 2 | ||||
-rw-r--r-- | gcc/config/i386/i386.h | 2 | ||||
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/decl.c | 2 | ||||
-rw-r--r-- | gcc/ipa-devirt.c | 2 | ||||
-rw-r--r-- | gcc/ipa-inline.c | 2 | ||||
-rw-r--r-- | gcc/ipa-polymorphic-call.c | 2 | ||||
-rw-r--r-- | gcc/ipa-reference.c | 2 | ||||
-rw-r--r-- | gcc/lto/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/lto/lto-symtab.h | 2 | ||||
-rw-r--r-- | gcc/tree-streamer-out.c | 2 |
12 files changed, 29 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3a9b3d5..5e90eb9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,14 @@ +2016-03-08 Jakub Jelinek <jakub@redhat.com> + + * ipa-polymorphic-call.c (walk_ssa_copies): Fix spelling + - becuase -> because. + * ipa-reference.c (ignore_module_statics): Likewise. + * cgraph.c (cgraph_node::get_body): Likewise. + * ipa-inline.c (early_inliner): Likewise. + * ipa-devirt.c (types_same_for_odr): Likewise. + * tree-streamer-out.c (pack_ts_type_common_value_fields): Likewise. + * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Likewise. + 2016-03-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com> * tree-ssa-math-opts.c: Fix typo in comment. diff --git a/gcc/cgraph.c b/gcc/cgraph.c index 7727313..ee6a209 100644 --- a/gcc/cgraph.c +++ b/gcc/cgraph.c @@ -3356,7 +3356,7 @@ cgraph_node::get_body (void) updated = get_untransformed_body (); /* Getting transformed body makes no sense for inline clones; - we should never use this on real clones becuase they are materialized + we should never use this on real clones because they are materialized early. TODO: Materializing clones here will likely lead to smaller LTRANS footprint. */ diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index 027adb1..8d39b5d 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -1621,7 +1621,7 @@ enum reg_class function prologue should increase the stack frame size by this amount. In 32bit mode enabling argument accumulation results in about 5% code size - growth becuase move instructions are less compact than push. In 64bit + growth because move instructions are less compact than push. In 64bit mode the difference is less drastic but visible. FIXME: Unlike earlier implementations, the size of unwind info seems to diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index f58e34e..54dd3ec 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2016-03-08 Jakub Jelinek <jakub@redhat.com> + + * decl.c (duplicate_decls): Fix spelling - becuase -> because. + 2016-03-07 Patrick Palka <ppalka@gcc.gnu.org> PR c++/66786 diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index 8504ab6..27c3597 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -2646,7 +2646,7 @@ duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend) Before releasing the node, be sore to remove function from symbol table that might have been inserted there to record comdat group. - Be sure to however do not free DECL_STRUCT_FUNCTION becuase this + Be sure to however do not free DECL_STRUCT_FUNCTION because this structure is shared in between newdecl and oldecl. */ if (TREE_CODE (newdecl) == FUNCTION_DECL) DECL_STRUCT_FUNCTION (newdecl) = NULL; diff --git a/gcc/ipa-devirt.c b/gcc/ipa-devirt.c index deb2a27..2da5c01 100644 --- a/gcc/ipa-devirt.c +++ b/gcc/ipa-devirt.c @@ -393,7 +393,7 @@ odr_vtable_hasher::hash (const odr_type_d *odr_type) When STRICT is true, we compare types by their names for purposes of ODR violation warnings. When strict is false, we consider variants - equivalent, becuase it is all that matters for devirtualization machinery. + equivalent, because it is all that matters for devirtualization machinery. */ bool diff --git a/gcc/ipa-inline.c b/gcc/ipa-inline.c index 57a4588..55899ef 100644 --- a/gcc/ipa-inline.c +++ b/gcc/ipa-inline.c @@ -2688,7 +2688,7 @@ early_inliner (function *fun) /* If some always_inline functions was inlined, apply the changes. This way we will not account always inline into growth limits and moreover we will inline calls from always inlines that we skipped - previously becuase of conditional above. */ + previously because of conditional above. */ if (inlined) { timevar_push (TV_INTEGRATION); diff --git a/gcc/ipa-polymorphic-call.c b/gcc/ipa-polymorphic-call.c index 91c41f9..842ca13 100644 --- a/gcc/ipa-polymorphic-call.c +++ b/gcc/ipa-polymorphic-call.c @@ -812,7 +812,7 @@ walk_ssa_copies (tree op, hash_set<tree> **global_visited = NULL) ptr = ptr.foo; This pattern is implicitly produced for casts to non-primary bases. When doing context analysis, we do not really care - about the case pointer is NULL, becuase the call will be + about the case pointer is NULL, because the call will be undefined anyway. */ if (gimple_code (SSA_NAME_DEF_STMT (op)) == GIMPLE_PHI) { diff --git a/gcc/ipa-reference.c b/gcc/ipa-reference.c index 6a3f6c3..b52db42 100644 --- a/gcc/ipa-reference.c +++ b/gcc/ipa-reference.c @@ -104,7 +104,7 @@ static splay_tree reference_vars_to_consider; static we are considering. This is added to the local info when asm code is found that clobbers all memory. */ static bitmap all_module_statics; -/* Set of all statics that should be ignored becuase they are touched by +/* Set of all statics that should be ignored because they are touched by -fno-ipa-reference code. */ static bitmap ignore_module_statics; diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog index 6496fd9..7a298d6 100644 --- a/gcc/lto/ChangeLog +++ b/gcc/lto/ChangeLog @@ -1,3 +1,8 @@ +2016-03-08 Jakub Jelinek <jakub@redhat.com> + + * lto-symtab.h (lto_symtab_prevail_decl): Fix spelling + - becuase -> because. + 2016-02-15 Tom de Vries <tom@codesourcery.com> PR lto/69655 diff --git a/gcc/lto/lto-symtab.h b/gcc/lto/lto-symtab.h index 2dccde6e..821e2e0 100644 --- a/gcc/lto/lto-symtab.h +++ b/gcc/lto/lto-symtab.h @@ -25,7 +25,7 @@ extern tree lto_symtab_prevailing_virtual_decl (tree decl); /* Mark DECL to be previailed by PREVAILING. Use DECL_ABSTRACT_ORIGIN and DECL_CHAIN as special markers; those do not disturb debug_tree and diagnostics. - We are safe to modify them as we wish, becuase the declarations disappear + We are safe to modify them as we wish, because the declarations disappear from the IL after the merging. */ inline void diff --git a/gcc/tree-streamer-out.c b/gcc/tree-streamer-out.c index 42281a5..c37755d 100644 --- a/gcc/tree-streamer-out.c +++ b/gcc/tree-streamer-out.c @@ -325,7 +325,7 @@ pack_ts_type_common_value_fields (struct bitpack_d *bp, tree expr) bp_pack_value (bp, TYPE_READONLY (expr), 1); /* We used to stream TYPE_ALIAS_SET == 0 information to let frontends mark types that are opaque for TBAA. This however did not work as intended, - becuase TYPE_ALIAS_SET == 0 was regularly lost in type merging. */ + because TYPE_ALIAS_SET == 0 was regularly lost in type merging. */ if (RECORD_OR_UNION_TYPE_P (expr)) { bp_pack_value (bp, TYPE_TRANSPARENT_AGGR (expr), 1); |