diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-12-13 00:17:22 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-12-13 00:17:22 +0000 |
commit | 09da15320b1856ba010101ca5a1c2766d493c1b4 (patch) | |
tree | 3f4977682a21560e2c4d370fc537230aad533512 /gcc/dominance.c | |
parent | 7930523de8ea4ce820f4a83b2a87b076b5d0ff37 (diff) | |
download | gcc-09da15320b1856ba010101ca5a1c2766d493c1b4.tar.gz |
c-decl.c: Fix a comment typo.
* c-decl.c: Fix a comment typo.
* cfg.c: Likewise.
* cfgcleanup.c: Likewise.
* cfglayout.c: Likewise.
* cfgrtl.c: Likewise.
* c-typeck.c: Likewise.
* dominance.c: Likewise.
* dwarf2asm.c: Likewise.
* dwarfout.c: Likewise.
* expmed.c: Likewise.
* expr.c: Likewise.
* final.c: Likewise.
* flow.c: Likewise.
* function.c: Likewise.
* gcc.c: Likewise.
* genautomata.c: Likewise.
* integrate.c: Likewise.
* loop.c: Likewise.
* loop.h: Likewise.
* output.h: Likewise.
* profile.c: Likewise.
* ra.h: Likewise.
* reload1.c: Likewise.
* reload.c: Likewise.
* sched-rgn.c: Likewise.
* stmt.c: Likewise.
* tree.h: Likewise.
* vmsdbgout.c: Likewise.
From-SVN: r60085
Diffstat (limited to 'gcc/dominance.c')
-rw-r--r-- | gcc/dominance.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dominance.c b/gcc/dominance.c index 48c621961e1..1bba31fb57c 100644 --- a/gcc/dominance.c +++ b/gcc/dominance.c @@ -101,7 +101,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 corresponds with an basic block, + /* If x is the DFS-index of a node which corresponds with a 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. */ |