diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-08 12:47:27 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-08 12:47:27 +0000 |
commit | 7299020be2081b008bdcb00d59a98651876209c8 (patch) | |
tree | 1597dda2c873e24f24656f766f741b0d4814230e /gcc/ra-build.c | |
parent | 97f8ce30d720df5a8ef7b32f24f177a630ab2f4b (diff) | |
download | ppe42-gcc-7299020be2081b008bdcb00d59a98651876209c8.tar.gz ppe42-gcc-7299020be2081b008bdcb00d59a98651876209c8.zip |
* basic-block.h: Fix comment formatting.
* c-common.c: Likewise.
* c-common.h: Likewise.
* c-lex.c: Likewise.
* c-pretty-print.c: Likewise.
* cfglayout.c: Likewise.
* cfgloop.c: Likewise.
* defaults.h: Likewise.
* et-forest.c: Likewise.
* explow.c: Likewise.
* function.h: Likewise.
* gcov.c: Likewise.
* genattrtab.c: Likewise.
* gengtype.c: Likewise.
* ifcvt.c: Likewise.
* libgcc2.c: Likewise.
* loop.c: Likewise.
* profile.c: Likewise.
* ra-build.c: Likewise.
* real.c: Likewise.
* rtl.h: Likewise.
* tracer.c: Likewise.
* tree-inline.c: Likewise.
* varasm.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@56952 138bc75d-0d04-0410-961f-82ee72b054a4
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)) { |