diff options
| author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-30 16:27:30 +0000 |
|---|---|---|
| committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-30 16:27:30 +0000 |
| commit | 7bd28bbae4ff4dd2612545c506c6c9d33bc28cfc (patch) | |
| tree | 5061220e8209778aa37f21016395d5b6b6291a31 /gcc/cgraphunit.c | |
| parent | f5f73833861ce97751013846a39178e2587b9e4c (diff) | |
| download | ppe42-gcc-7bd28bbae4ff4dd2612545c506c6c9d33bc28cfc.tar.gz ppe42-gcc-7bd28bbae4ff4dd2612545c506c6c9d33bc28cfc.zip | |
* bb-reorder.c, c-opts.c, cfglayout.c, cgraph.c, cgraphunit.c,
cppfiles.c, fold-const.c, ggc-zone.c, loop-doloop.c, optabs.c,
reg-stack.c, varasm.c, config/alpha/ev4.md,
config/alpha/ev5.md, config/alpha/ev6.md, config/arm/arm.c,
config/c4x/c4x.c, config/c4x/c4x.md, config/cris/cris.c,
config/cris/cris.h, config/fr30/fr30.h, config/frv/frv.c,
config/frv/frv.h, config/frv/frv.md, config/h8300/h8300.c,
config/i386/i386.c, config/i386/i386.md, config/i386/winnt.c,
config/ia64/itanium2.md, config/ip2k/ip2k.c,
config/mips/mips.c, config/mips/mips.h, config/mips/sr71k.md,
config/pa/pa.c, config/s390/s390.c, config/sh/sh.c: Fix
comment typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81345 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraphunit.c')
| -rw-r--r-- | gcc/cgraphunit.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index cbe468e2a9e..156c924bca1 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -36,7 +36,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA - cgraph_varpool_finalize_variable - This function has same behaviour as the above but is used for static + This function has same behavior as the above but is used for static variables. - cgraph_finalize_compilation_unit @@ -324,7 +324,7 @@ cgraph_finalize_function (tree decl, bool nested) if (node->output) abort (); - /* Reset our datastructures so we can analyze the function again. */ + /* Reset our data structures so we can analyze the function again. */ memset (&node->local, 0, sizeof (node->local)); memset (&node->global, 0, sizeof (node->global)); memset (&node->rtl, 0, sizeof (node->rtl)); @@ -1022,7 +1022,7 @@ cgraph_clone_inlined_nodes (struct cgraph_edge *e, bool duplicate) { struct cgraph_node *n; - /* We may elliminate the need for out-of-line copy to be output. In that + /* We may eliminate the need for out-of-line copy to be output. In that case just go ahead and re-use it. */ if (!e->callee->callers->next_caller && (!e->callee->needed || DECL_EXTERNAL (e->callee->decl)) @@ -1348,7 +1348,7 @@ cgraph_decide_inlining_of_small_functions (void) } /* Decide on the inlining. We do so in the topological order to avoid - expenses on updating datastructures. */ + expenses on updating data structures. */ static void cgraph_decide_inlining (void) @@ -1491,7 +1491,7 @@ cgraph_decide_inlining (void) } /* Decide on the inlining. We do so in the topological order to avoid - expenses on updating datastructures. */ + expenses on updating data structures. */ static void cgraph_decide_inlining_incrementally (struct cgraph_node *node) @@ -1561,7 +1561,7 @@ cgraph_expand_all_functions (void) if (order_pos != cgraph_n_nodes) abort (); - /* Garbage collector may remove inline clones we elliminate during + /* Garbage collector may remove inline clones we eliminate during optimization. So we must be sure to not reference them. */ for (i = 0; i < order_pos; i++) if (order[i]->output) |

