diff options
author | Nathan Froyd <froydnj@codesourcery.com> | 2011-02-11 15:16:46 +0000 |
---|---|---|
committer | Nathan Froyd <froydnj@gcc.gnu.org> | 2011-02-11 15:16:46 +0000 |
commit | 61502ca83754695ad954c8872379ae566f8e21e9 (patch) | |
tree | fb74d6c5685edc7c6aad61bcc6ec5436740ac374 /gcc/ipa-reference.c | |
parent | d50c5e0c692b85447c059144c5ccff0f67c07854 (diff) | |
download | gcc-61502ca83754695ad954c8872379ae566f8e21e9.zip gcc-61502ca83754695ad954c8872379ae566f8e21e9.tar.gz gcc-61502ca83754695ad954c8872379ae566f8e21e9.tar.bz2 |
cgraph.c: Fix comment typos.
* cgraph.c: Fix comment typos.
* cgraph.h: Likewise.
* cgraphunit.c: Likewise.
* ipa-cp.c: Likewise.
* ipa-inline.c: Likewise.
* ipa-prop.c: Likewise.
* ipa-pure-const.c: Likewise.
* ipa-ref.c: Likewise.
* ipa-reference.c: Likewise.
From-SVN: r170052
Diffstat (limited to 'gcc/ipa-reference.c')
-rw-r--r-- | gcc/ipa-reference.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ipa-reference.c b/gcc/ipa-reference.c index a2a8517..f874a2e 100644 --- a/gcc/ipa-reference.c +++ b/gcc/ipa-reference.c @@ -86,7 +86,7 @@ struct ipa_reference_global_vars_info_d bitmap statics_written; }; -/* Information we save about every function after ipa-reference is completted. */ +/* Information we save about every function after ipa-reference is completed. */ struct ipa_reference_optimization_summary_d { @@ -658,7 +658,7 @@ propagate (void) read_all = false; write_all = false; - /* When function is overwrittable, we can not assume anything. */ + /* When function is overwritable, we can not assume anything. */ if (cgraph_function_body_availability (node) <= AVAIL_OVERWRITABLE) read_write_all_from_decl (node, &read_all, &write_all); @@ -691,7 +691,7 @@ propagate (void) if (dump_file && (dump_flags & TDF_DETAILS)) fprintf (dump_file, " Visiting %s/%i\n", cgraph_node_name (w), w->uid); - /* When function is overwrittable, we can not assume anything. */ + /* When function is overwritable, we can not assume anything. */ if (cgraph_function_body_availability (w) <= AVAIL_OVERWRITABLE) read_write_all_from_decl (w, &read_all, &write_all); |