ipa-polymorphic-call.c (walk_ssa_copies): Fix spelling - becuase -> because.
authorJakub Jelinek <jakub@redhat.com>
Tue, 8 Mar 2016 17:49:34 +0000 (18:49 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 8 Mar 2016 17:49:34 +0000 (18:49 +0100)
* 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

12 files changed:
gcc/ChangeLog
gcc/cgraph.c
gcc/config/i386/i386.h
gcc/cp/ChangeLog
gcc/cp/decl.c
gcc/ipa-devirt.c
gcc/ipa-inline.c
gcc/ipa-polymorphic-call.c
gcc/ipa-reference.c
gcc/lto/ChangeLog
gcc/lto/lto-symtab.h
gcc/tree-streamer-out.c

index 3a9b3d5..5e90eb9 100644 (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.
index 7727313..ee6a209 100644 (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. */
index 027adb1..8d39b5d 100644 (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
index f58e34e..54dd3ec 100644 (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
index 8504ab6..27c3597 100644 (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;
index deb2a27..2da5c01 100644 (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
index 57a4588..55899ef 100644 (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);
index 91c41f9..842ca13 100644 (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)
        {
index 6a3f6c3..b52db42 100644 (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;
 
index 6496fd9..7a298d6 100644 (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
index 2dccde6..821e2e0 100644 (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
index 42281a5..c37755d 100644 (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);