aboutsummaryrefslogtreecommitdiff
path: root/gcc/cgraph.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-07-01 12:18:01 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-07-01 12:18:01 +0000
commite0bb17a83f613106571d3b516168d12cf83b10be (patch)
tree2e247fb1aad8f72881cfd082e69ebe412ba7989f /gcc/cgraph.h
parent0d0a1710d97a7eff97667caa55f83cc7bbe948de (diff)
downloadgcc-e0bb17a83f613106571d3b516168d12cf83b10be.zip
gcc-e0bb17a83f613106571d3b516168d12cf83b10be.tar.gz
gcc-e0bb17a83f613106571d3b516168d12cf83b10be.tar.bz2
basic-block.h: Fix comment typos.
* basic-block.h: Fix comment typos. * bb-reorder.c: Likewise. * c-format.c: Likewise. * cfgcleanup.c: Likewise. * cfghooks.h: Likewise. * cfgloop.c: Likewise. * cfgloopmanip.c: Likewise. * cfgrtl.c: Likewise. * cgraph.h: Likewise. * cgraphunit.c: Likewise. * combine.c: Likewise. * convert.c: Likewise. * dbxout.c: Likewise. * df.c: Likewise. * df.h: Likewise. * diagnostic.c: Likewise. * dwarf2out.c: Likewise. * et-forest.h: Likewise. * flow.c: Likewise. * fold-const.c: Likewise. * function.h: Likewise. * gcov-io.h: Likewise. * gcov.c: Likewise. * gcse.c: Likewise. * genautomata.c: Likewise. * ggc-common.c: Likewise. * ggc-page.c: Likewise. * loop-unroll.c: Likewise. * loop-unswitch.c: Likewise. * loop.c: Likewise. * mips-tfile.c: Likewise. * optabs.c: Likewise. * ra-build.c: Likewise. * ra-colorize.c: Likewise. * ra-rewrite.c: Likewise. * ra.h: Likewise. * regmove.c: Likewise. * reload.c: Likewise. * rtlanal.c: Likewise. * sched-ebb.c: Likewise. * sched-int.h: Likewise. * sched-vis.c: Likewise. * sreal.c: Likewise. * ssa-ccp.c: Likewise. * ssa.c: Likewise. * toplev.c: Likewise. * tree-inline.c: Likewise. * value-prof.c: Likewise. * value-prof.h: Likewise. From-SVN: r68770
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r--gcc/cgraph.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h
index 8e5ceba..91f99bf 100644
--- a/gcc/cgraph.h
+++ b/gcc/cgraph.h
@@ -27,10 +27,10 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
struct cgraph_local_info GTY(())
{
- /* Set when function function is visiable in current compilation unit only
+ /* Set when function function is visible in current compilation unit only
and it's address is never taken. */
bool local;
- /* Set when function is small enought to be inlinable many times. */
+ /* Set when function is small enough to be inlinable many times. */
bool inline_many;
/* Set when function can be inlined once (false only for functions calling
alloca, using varargs and so on). */
@@ -58,7 +58,7 @@ struct cgraph_rtl_info GTY(())
/* The cgraph data strutcture.
- Each function decl has assigned cgraph_node listing calees and callers. */
+ Each function decl has assigned cgraph_node listing callees and callers. */
struct cgraph_node GTY(())
{
@@ -79,7 +79,7 @@ struct cgraph_node GTY(())
or it's address is taken. */
bool needed;
/* Set when function is reachable by call from other function
- that is eighter reachable or needed. */
+ that is either reachable or needed. */
bool reachable;
/* Set when the frontend has been asked to lower representation of this
function into trees. Callees lists are not available when lowered