diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-08-08 22:06:48 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-08-08 22:06:48 +0000 |
commit | 30f7a3786cb384b94caaf87cb231f3d8c8f8acbc (patch) | |
tree | 77dd07a40f045e97f39b2d3535ca6f4cc0a8e9a8 /gcc/flow.c | |
parent | 35e17f7e33498b9b9a152758dc621ee7638fdb52 (diff) | |
download | gcc-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/flow.c')
-rw-r--r-- | gcc/flow.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -3822,7 +3822,7 @@ try_crossjump_to_edge (mode, e1, e2) if (e1->flags & EDGE_COMPLEX) return false; - /* Look for the common insn sequence, part the first ... */ + /* Look for the common insn sequence, part the first ... */ if (!outgoing_edges_match (src1, src2)) return false; @@ -5802,7 +5802,7 @@ insn_dead_p (pbi, x, call_ok, notes) If so, this memory write is dead (remember, we're walking backwards from the end of the block to the start). Since rtx_equal_p does not check the alias set or flags, we also - must have the potential for them to conflict (anti_dependence). */ + must have the potential for them to conflict (anti_dependence). */ for (temp = pbi->mem_set_list; temp != 0; temp = XEXP (temp, 1)) if (anti_dependence (r, XEXP (temp, 0))) { @@ -8385,7 +8385,7 @@ verify_flow_info () for (i = n_basic_blocks - 1; i >= 0; i--) { basic_block bb = BASIC_BLOCK (i); - /* Check correctness of edge lists. */ + /* Check correctness of edge lists. */ edge e; int has_fallthru = 0; @@ -9676,7 +9676,7 @@ flow_loop_pre_header_scan (loop) /* Count number of edges along trace from loop header to root of pre-header extended basic block. Usually this is - only one or two edges. */ + only one or two edges. */ num++; while (ebb->pred->src != ENTRY_BLOCK_PTR && ! ebb->pred->pred_next) { |