diff options
Diffstat (limited to 'gcc/ra-build.c')
-rw-r--r-- | gcc/ra-build.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ra-build.c b/gcc/ra-build.c index e1ad650bc7d..e320e514d90 100644 --- a/gcc/ra-build.c +++ b/gcc/ra-build.c @@ -275,7 +275,7 @@ copy_insn_p (insn, source, target) s_regno = (unsigned) REGNO (GET_CODE (s) == SUBREG ? SUBREG_REG (s) : s); d_regno = (unsigned) REGNO (GET_CODE (d) == SUBREG ? SUBREG_REG (d) : d); - /* Copies between hardregs are useless for us, as not coalesable anyway. */ + /* Copies between hardregs are useless for us, as not coalesable anyway. */ if ((s_regno < FIRST_PSEUDO_REGISTER && d_regno < FIRST_PSEUDO_REGISTER) || s_regno >= max_normal_pseudo @@ -563,7 +563,7 @@ remember_move (insn) SET_BIT (move_handled, INSN_UID (insn)); if (copy_insn_p (insn, &s, &d)) { - /* Some sanity test for the copy insn. */ + /* Some sanity test for the copy insn. */ struct df_link *slink = DF_INSN_USES (df, insn); struct df_link *link = DF_INSN_DEFS (df, insn); if (!link || !link->ref || !slink || !slink->ref) @@ -844,7 +844,7 @@ live_out_1 (df, use, insn) else { /* If this insn doesn't completely define the USE, increment also - it's spanned deaths count (if this insn contains a death). */ + it's spanned deaths count (if this insn contains a death). */ if (uid >= death_insns_max_uid) abort (); if (TEST_BIT (insns_with_deaths, uid)) @@ -876,7 +876,7 @@ live_out (df, use, insn) && (use->undefined & ~visit_trace[uid].undefined) == 0) { union_web_parts (visit_trace[uid].wp, use->wp); - /* Don't search any further, as we already were here with this regno. */ + /* Don't search any further, as we already were here with this regno. */ return 0; } else @@ -2813,7 +2813,7 @@ moves_to_webs (df) if (m->source_web && m->target_web /* If the usable_regs don't intersect we can't coalesce the two webs anyway, as this is no simple copy insn (it might even - need an intermediate stack temp to execute this "copy" insn). */ + need an intermediate stack temp to execute this "copy" insn). */ && hard_regs_intersect_p (&m->source_web->usable_regs, &m->target_web->usable_regs)) { |