aboutsummaryrefslogtreecommitdiff
path: root/gcc/cgraph.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/cgraph.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/cgraph.c')
-rw-r--r--gcc/cgraph.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cgraph.c b/gcc/cgraph.c
index 58e14ba..22a9852 100644
--- a/gcc/cgraph.c
+++ b/gcc/cgraph.c
@@ -677,7 +677,7 @@ cgraph_edge_hasher::hash (gimple call_stmt)
return (hashval_t) ((intptr_t)call_stmt >> 3);
}
-/* Return nonzero if the call_stmt of of cgraph_edge X is stmt *Y. */
+/* Return nonzero if the call_stmt of cgraph_edge X is stmt *Y. */
inline bool
cgraph_edge_hasher::equal (cgraph_edge *x, gimple y)
@@ -1739,8 +1739,8 @@ cgraph_node::release_body (bool keep_arguments)
if (!keep_arguments)
DECL_ARGUMENTS (decl) = NULL;
}
- /* If the node is abstract and needed, then do not clear DECL_INITIAL
- of its associated function function declaration because it's
+ /* If the node is abstract and needed, then do not clear
+ DECL_INITIAL of its associated function declaration because it's
needed to emit debug info later. */
if (!used_as_abstract_origin && DECL_INITIAL (decl))
DECL_INITIAL (decl) = error_mark_node;