summaryrefslogtreecommitdiff
path: root/gcc/flow.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-08 22:06:48 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-08 22:06:48 +0000
commit6312a35e172735c7c23e1d301432e20e6d6adee7 (patch)
tree77dd07a40f045e97f39b2d3535ca6f4cc0a8e9a8 /gcc/flow.c
parente1a0b2117da0d412b6921b2f18acc3dbb933aa18 (diff)
downloadgcc-6312a35e172735c7c23e1d301432e20e6d6adee7.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44729 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/flow.c')
-rw-r--r--gcc/flow.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index 7fe007485c1..f7d32196a86 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -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)
{