aboutsummaryrefslogtreecommitdiff
path: root/gcc/dominance.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2001-08-08 22:06:48 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2001-08-08 22:06:48 +0000
commit30f7a3786cb384b94caaf87cb231f3d8c8f8acbc (patch)
tree77dd07a40f045e97f39b2d3535ca6f4cc0a8e9a8 /gcc/dominance.c
parent35e17f7e33498b9b9a152758dc621ee7638fdb52 (diff)
downloadgcc-30f7a3786cb384b94caaf87cb231f3d8c8f8acbc.zip
gcc-30f7a3786cb384b94caaf87cb231f3d8c8f8acbc.tar.gz
gcc-30f7a3786cb384b94caaf87cb231f3d8c8f8acbc.tar.bz2
dbxout.c: Fix comment formatting.
* dbxout.c: Fix comment formatting. * dependence.c: Likewise. * df.c: Likewise. * diagnostic.c: Likewise. * dominance.c: Likewise. * doprint.c: Likewise. * dwarf2out.c: Likewise. * dwarfout.c: Likewise. * emit-rtl.c: Likewise. * except.c: Likewise. * explow.c: Likewise. * expmed.c: Likewise. * expr.c: Likewise. * flow.c: Likewise. * fold-const.c: Likewise. * function.c: Likewise. From-SVN: r44729
Diffstat (limited to 'gcc/dominance.c')
-rw-r--r--gcc/dominance.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/dominance.c b/gcc/dominance.c
index 8f5e0d3..3c35268 100644
--- a/gcc/dominance.c
+++ b/gcc/dominance.c
@@ -95,7 +95,7 @@ struct dom_info
is true for every basic block bb, but not the opposite. */
basic_block *dfs_to_bb;
- /* This is the next free DFS number when creating the DFS tree or forest. */
+ /* This is the next free DFS number when creating the DFS tree or forest. */
unsigned int dfsnum;
/* The number of nodes in the DFS tree (==dfsnum-1). */
unsigned int nodes;
@@ -193,7 +193,7 @@ calc_dfs_tree_nonrec (di, bb, reverse)
basic_block bb;
enum cdi_direction reverse;
{
- /* We never call this with bb==EXIT_BLOCK_PTR (ENTRY_BLOCK_PTR if REVERSE). */
+ /* We never call this with bb==EXIT_BLOCK_PTR (ENTRY_BLOCK_PTR if REVERSE). */
/* We call this _only_ if bb is not already visited. */
edge e;
TBB child_i, my_i = 0;