diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-30 18:32:31 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-30 18:32:31 +0000 |
commit | 0bed386979f6bdc139c519bab996bed698ade995 (patch) | |
tree | baf32c5e895885ca41746d8d293000d998661d76 /gcc/bb-reorder.c | |
parent | da41aa8ec87c685d4f9f94bf1faa3f47e83d32d9 (diff) | |
download | gcc-0bed386979f6bdc139c519bab996bed698ade995.tar.gz |
* bb-reorder.c, builtins.c, c-common.c, c-gimplify.c,
c-incpath.c, cgraphunit.c, ddg.c, defaults.h, dwarf2out.c,
expmed.c, flags.h, gcc.c, gensupport.c, gimplify.c, global.c,
passes.c, reg-stack.c, target.h, toplev.c, tree-alias-ander.c,
tree-alias-common.c, tree-cfg.c, tree-complex.c, tree-dfa.c,
tree-eh.c, tree-mudflap.c, tree-mudflap.h, tree-outof-ssa.c,
tree-phinodes.c, tree-pretty-print.c, tree-ssa-alias.c,
tree-ssa-ccp.c, tree-ssa-live.c, tree-ssa-live.h,
tree-ssa-pre.c, tree.h, value-prof.h, varasm.c: Fix comment
formatting.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@82463 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bb-reorder.c')
-rw-r--r-- | gcc/bb-reorder.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index 0e45d1605cb..afac18843ba 100644 --- a/gcc/bb-reorder.c +++ b/gcc/bb-reorder.c @@ -1331,7 +1331,7 @@ mark_bb_for_unlikely_executed_section (basic_block bb) /* If any destination of a crossing edge does not have a label, add label; Convert any fall-through crossing edges (for blocks that do not contain - a jump) to unconditional jumps. */ + a jump) to unconditional jumps. */ static void add_labels_and_missing_jumps (edge *crossing_edges, int n_crossing_edges) @@ -1472,7 +1472,7 @@ fix_up_fall_thru_edges (void) && cur_bb->rbi->next == cond_jump->dest) { /* Find label in fall_thru block. We've already added - any missing labels, so there must be one. */ + any missing labels, so there must be one. */ fall_thru_label = block_label (fall_thru->dest); @@ -1554,7 +1554,7 @@ find_jump_block (basic_block jump_dest) /* Check each predecessor to see if it has a label, and contains only one executable instruction, which is an unconditional jump. - If so, we can use it. */ + If so, we can use it. */ if (GET_CODE (BB_HEAD (src)) == CODE_LABEL) for (insn = BB_HEAD (src); |