diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-01-25 03:52:42 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-01-25 03:52:42 +0000 |
commit | 1f52178b3a8510309c5b8f739f6e74fff73895e5 (patch) | |
tree | bf5e07ce58ea32552b2f08730c4b206c218b96ac /gcc/et-forest.c | |
parent | 56ae131655af9274170eb9766c16ae034403a2bc (diff) | |
download | gcc-1f52178b3a8510309c5b8f739f6e74fff73895e5.zip gcc-1f52178b3a8510309c5b8f739f6e74fff73895e5.tar.gz gcc-1f52178b3a8510309c5b8f739f6e74fff73895e5.tar.bz2 |
c-common.h: Fix comment typos.
* c-common.h: Fix comment typos.
* c-decl.c: Likewise.
* cgraphunit.c: Likewise.
* combine.c: Likewise.
* et-forest.c: Likewise.
* flow.c: Likewise.
* function.c: Likewise.
* ifcvt.c: Likewise.
* integrate.c: Likewise.
* jump.c: Likewise.
* postreload.c: Likewise.
* varray.c: Likewise.
From-SVN: r76539
Diffstat (limited to 'gcc/et-forest.c')
-rw-r--r-- | gcc/et-forest.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/et-forest.c b/gcc/et-forest.c index 62cdd21..77194c6 100644 --- a/gcc/et-forest.c +++ b/gcc/et-forest.c @@ -37,7 +37,7 @@ Boston, MA 02111-1307, USA. #include "basic-block.h" #endif -/* The occurence of a node in the et tree. */ +/* The occurrence of a node in the et tree. */ struct et_occ { struct et_node *of; /* The node. */ @@ -51,7 +51,7 @@ struct et_occ int min; /* The minimum value of the depth in the subtree is obtained by adding sum of depth fields on the path to the root. */ - struct et_occ *min_occ; /* The occurence in the subtree with the minimal + struct et_occ *min_occ; /* The occurrence in the subtree with the minimal depth. */ }; @@ -112,7 +112,7 @@ set_next (struct et_occ *occ, struct et_occ *t) t->parent = occ; } -/* Recompute minimum for occurence OCC. */ +/* Recompute minimum for occurrence OCC. */ static inline void et_recomp_min (struct et_occ *occ) @@ -310,7 +310,7 @@ check_path_after (struct et_occ *occ) #endif -/* Splay the occurence OCC to the root of the tree. */ +/* Splay the occurrence OCC to the root of the tree. */ static void et_splay (struct et_occ *occ) @@ -452,7 +452,7 @@ et_splay (struct et_occ *occ) #endif } -/* Create a new et tree occurence of NODE. */ +/* Create a new et tree occurrence of NODE. */ static struct et_occ * et_new_occ (struct et_node *node) |