summaryrefslogtreecommitdiff
path: root/gcc/ipa-reference.c
diff options
context:
space:
mode:
authorfroydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4>2011-02-11 15:16:46 +0000
committerfroydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4>2011-02-11 15:16:46 +0000
commit0a10fd82fb8eec907699469cc74937386235fff3 (patch)
treefb74d6c5685edc7c6aad61bcc6ec5436740ac374 /gcc/ipa-reference.c
parent58dcd9709865daadb3bddb0694cdd85fcca839a0 (diff)
downloadgcc-0a10fd82fb8eec907699469cc74937386235fff3.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170052 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ipa-reference.c')
-rw-r--r--gcc/ipa-reference.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ipa-reference.c b/gcc/ipa-reference.c
index a2a8517c78a..f874a2e80ef 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);