ipa-polymorphic-call.c (walk_ssa_copies): Fix spelling - becuase -> because.

* 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.
cp/
	* decl.c (duplicate_decls): Fix spelling - becuase -> because.
lto/
	* lto-symtab.h (lto_symtab_prevail_decl): Fix spelling
	- becuase -> because.

From-SVN: r234061
This commit is contained in:
Jakub Jelinek 2016-03-08 18:49:34 +01:00 committed by Jakub Jelinek
parent 6edbcfc3f4
commit 56aae4b7c0
12 changed files with 29 additions and 9 deletions

View File

@ -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.

View File

@ -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. */

View File

@ -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

View File

@ -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

View File

@ -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;

View File

@ -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

View File

@ -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);

View File

@ -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)
{

View File

@ -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;

View File

@ -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

View File

@ -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

View File

@ -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);