aboutsummaryrefslogtreecommitdiff
path: root/gcc/bt-load.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-06-29 13:53:12 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-06-29 13:53:12 +0000
commitf9da50645221cfa880519542a1c5e37c53837bef (patch)
tree096f08da7ff43d0c89a0ae297b1089589ba63a46 /gcc/bt-load.c
parent329d586fe57ac58fb541855cf8e329b9f5cb5cff (diff)
downloadgcc-f9da50645221cfa880519542a1c5e37c53837bef.zip
gcc-f9da50645221cfa880519542a1c5e37c53837bef.tar.gz
gcc-f9da50645221cfa880519542a1c5e37c53837bef.tar.bz2
alloc-pool.c: Fix comment formatting.
* alloc-pool.c: Fix comment formatting. * bitmap.c: Likewise. * bitmap.h: Likewise. * bt-load.c: Likewise. * builtins.c: Likewise. * caller-save.c: Likewise. * cfganal.c: Likewise. * cfgrtl.c: Likewise. * collect2.c: Likewise. * cse.c: Likewise. * df.c: Likewise. * diagnostic.c: Likewise. * dwarf2out.c: Likewise. * dwarfout.c: Likewise. * expmed.c: Likewise. * final.c: Likewise. * flags.h: Likewise. * fold-const.c: Likewise. * gcc.c: Likewise. * gcov-io.h: Likewise. * gcov.c: Likewise. * genattrtab.c: Likewise. * genautomata.c: Likewise. * libgcov.c: Likewise. * mips-tfile.c: Likewise. * optabs.c: Likewise. * prefix.c: Likewise. * rtlanal.c: Likewise. * stmt.c: Likewise. * stor-layout.c: Likewise. * toplev.c: Likewise. * varasm.c: Likewise. * vmsdbgout.c: Likewise. From-SVN: r68672
Diffstat (limited to 'gcc/bt-load.c')
-rw-r--r--gcc/bt-load.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/bt-load.c b/gcc/bt-load.c
index ecacc23..180a8ba 100644
--- a/gcc/bt-load.c
+++ b/gcc/bt-load.c
@@ -89,7 +89,7 @@ typedef struct btr_def_s
btr_user uses;
/* If this def has a reaching use which is not a simple use
in a branch instruction, then has_ambiguous_use will be true,
- and we will not attempt to migrate this definition. */
+ and we will not attempt to migrate this definition. */
char has_ambiguous_use;
/* live_range is an approximation to the true live range for this
def/use web, because it records the set of blocks that contain
@@ -421,7 +421,7 @@ typedef struct {
/* Called via note_stores or directly to register stores into /
clobbers of a branch target register DEST that are not recognized as
straightforward definitions. DATA points to information about the
- current basic block that needs updating. */
+ current basic block that needs updating. */
static void
note_btr_set (rtx dest, rtx set ATTRIBUTE_UNUSED, void *data)
{
@@ -593,7 +593,7 @@ compute_out (sbitmap *bb_out, sbitmap *bb_gen, sbitmap *bb_kill, int max_uid)
For each block,
BB_IN = union over predecessors of BB_OUT(pred)
BB_OUT = (BB_IN - BB_KILL) + BB_GEN
- Iterate until the bb_out sets stop growing. */
+ Iterate until the bb_out sets stop growing. */
int i;
int changed;
sbitmap bb_in = sbitmap_alloc (max_uid);
@@ -652,7 +652,7 @@ link_btr_uses (btr_def *def_array, btr_user *use_array, sbitmap *bb_out,
if (user != NULL)
{
- /* Find all the reaching defs for this use */
+ /* Find all the reaching defs for this use. */
sbitmap reaching_defs_of_reg = sbitmap_alloc(max_uid);
int uid;
@@ -679,7 +679,7 @@ link_btr_uses (btr_def *def_array, btr_user *use_array, sbitmap *bb_out,
{
btr_def def = def_array[uid];
- /* We now know that def reaches user */
+ /* We now know that def reaches user. */
if (rtl_dump_file)
fprintf (rtl_dump_file,
@@ -1004,7 +1004,7 @@ combine_btr_defs (btr_def def, HARD_REG_SET *btrs_live_in_range)
btr = choose_btr (combined_btrs_live);
if (btr != -1)
{
- /* We can combine them */
+ /* We can combine them. */
if (rtl_dump_file)
fprintf (rtl_dump_file,
"Combining def in insn %d with def in insn %d\n",
@@ -1037,7 +1037,7 @@ combine_btr_defs (btr_def def, HARD_REG_SET *btrs_live_in_range)
def->other_btr_uses_after_use = 1;
COPY_HARD_REG_SET (*btrs_live_in_range, combined_btrs_live);
- /* Delete the old target register initialization */
+ /* Delete the old target register initialization. */
delete_insn (other_def->insn);
}
@@ -1108,7 +1108,7 @@ move_btr_def (basic_block new_def_bb, int btr, btr_def def, bitmap live_range,
fprintf (rtl_dump_file, "New pt is insn %d, inserted after insn %d\n",
INSN_UID (def->insn), INSN_UID (insp));
- /* Delete the old target register initialization */
+ /* Delete the old target register initialization. */
delete_insn (old_insn);
/* Replace each use of the old target register by a use of the new target
@@ -1185,7 +1185,7 @@ migrate_btr_def (btr_def def, int min_cost)
INSN_UID (def->insn), def->cost, min_cost);
if (!def->group || def->has_ambiguous_use)
- /* These defs are not migratable */
+ /* These defs are not migratable. */
{
if (rtl_dump_file)
fprintf (rtl_dump_file, "it's not migratable\n");