summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>2016-03-08 17:49:34 +0000
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>2016-03-08 17:49:34 +0000
commitfe4bc12362e8be94ac5f11b14de473002aea3cf5 (patch)
tree4588609e22a86a635c375d52a059b83f1f464d83
parent24794e79c5991eade3fea4d74c56a944eb27b291 (diff)
downloadgcc-fe4bc12362e8be94ac5f11b14de473002aea3cf5.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@234061 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog11
-rw-r--r--gcc/cgraph.c2
-rw-r--r--gcc/config/i386/i386.h2
-rw-r--r--gcc/cp/ChangeLog4
-rw-r--r--gcc/cp/decl.c2
-rw-r--r--gcc/ipa-devirt.c2
-rw-r--r--gcc/ipa-inline.c2
-rw-r--r--gcc/ipa-polymorphic-call.c2
-rw-r--r--gcc/ipa-reference.c2
-rw-r--r--gcc/lto/ChangeLog5
-rw-r--r--gcc/lto/lto-symtab.h2
-rw-r--r--gcc/tree-streamer-out.c2
12 files changed, 29 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 3a9b3d5a2c7..5e90eb9f004 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 77273139369..ee6a2090838 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 027adb1108b..8d39b5de2cb 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 f58e34ecd20..54dd3ecbc8e 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 8504ab68d31..27c3597a570 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 deb2a274b7b..2da5c013cf5 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 57a45883d89..55899ef1730 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 91c41f99f2c..842ca13cd06 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 6a3f6c35ce4..b52db42ed28 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 6496fd900a7..7a298d6edf0 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 2dccde6e929..821e2e0b480 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 42281a5844f..c37755d2008 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);