diff options
author | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-07-13 04:46:34 +0000 |
---|---|---|
committer | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-07-13 04:46:34 +0000 |
commit | 47ae02b70c395550e01975e649e37f6ea829dac5 (patch) | |
tree | b334918063791e89f97a111eb02e3d0c9f8a766e /gcc/cgraph.c | |
parent | d7d884cefe202081bff234e3bd0a3dcaed79d5a1 (diff) | |
download | gcc-47ae02b70c395550e01975e649e37f6ea829dac5.tar.gz |
Fix double word typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@225726 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraph.c')
-rw-r--r-- | gcc/cgraph.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cgraph.c b/gcc/cgraph.c index 58e14baae0f..22a98527819 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; |