aboutsummaryrefslogtreecommitdiff
path: root/gcc/dominance.c
diff options
context:
space:
mode:
authorJoseph Myers <jsm28@gcc.gnu.org>2001-11-23 02:05:19 +0000
committerJoseph Myers <jsm28@gcc.gnu.org>2001-11-23 02:05:19 +0000
commita1f300c0f19c17e0b17fe8017bc3cb79f23337bd (patch)
tree827acc65803788d44d036826826c0366d5c3edc9 /gcc/dominance.c
parent754d92990a56ddb0319ecd360eed752684423f0a (diff)
downloadgcc-a1f300c0f19c17e0b17fe8017bc3cb79f23337bd.zip
gcc-a1f300c0f19c17e0b17fe8017bc3cb79f23337bd.tar.gz
gcc-a1f300c0f19c17e0b17fe8017bc3cb79f23337bd.tar.bz2
ChangeLog.0, [...]: Fix spelling errors.
* ChangeLog.0, ChangeLog.2, ChangeLog.3, ChangeLog.4, ChangeLog, FSFChangeLog.10, c-decl.c, cppfiles.c, cppinit.c, cpplex.c, cpplib.c, cppmain.c, cse.c, df.c, diagnostic.c, dominance.c, dwarf2out.c, dwarfout.c, emit-rtl.c, errors.c, except.c, except.h, explow.c, function.c, gcse.c, genrecog.c, predict.c, regmove.c, sched-rgn.c, ssa-ccp.c, stmt.c, toplev.c: Fix spelling errors. From-SVN: r47279
Diffstat (limited to 'gcc/dominance.c')
-rw-r--r--gcc/dominance.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/dominance.c b/gcc/dominance.c
index 5e69b07..8bfd09d 100644
--- a/gcc/dominance.c
+++ b/gcc/dominance.c
@@ -28,7 +28,7 @@
block I(X), called the immediate dominator of X, which is the parent of X
in the dominator tree.
- The algorithm computes this dominator tree implicitely by computing for
+ The algorithm computes this dominator tree implicitly by computing for
each block its immediate dominator. We use tree balancing and path
compression, so its the O(e*a(e,v)) variant, where a(e,v) is the very
slowly growing functional inverse of the Ackerman function. */
@@ -89,7 +89,7 @@ struct dom_info
number of that node in DFS order counted from 1. This is an index
into most of the other arrays in this structure. */
TBB *dfs_order;
- /* If x is the DFS-index of a node which correspondends with an basic block,
+ /* If x is the DFS-index of a node which corresponds with an basic block,
dfs_to_bb[x] is that basic block. Note, that in our structure there are
more nodes that basic blocks, so only dfs_to_bb[dfs_order[bb->index]]==bb
is true for every basic block bb, but not the opposite. */
@@ -523,7 +523,7 @@ calc_idoms (di, reverse)
v--;
}
- /* Explicitely define the dominators. */
+ /* Explicitly define the dominators. */
di->dom[1] = 0;
for (v = 2; v <= di->nodes; v++)
if (di->dom[v] != di->key[v])