aboutsummaryrefslogtreecommitdiff
path: root/gcc/reg-stack.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2001-08-12 23:40:53 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2001-08-12 23:40:53 +0000
commitdc297297ea56b13efad4bcddab5359fae7d819c1 (patch)
treef8425171fd5a2b92510be46813648f3e6a1d9f61 /gcc/reg-stack.c
parentf0d1c3bd39e6379bf2c1b53071c62baeabeb2174 (diff)
downloadgcc-dc297297ea56b13efad4bcddab5359fae7d819c1.zip
gcc-dc297297ea56b13efad4bcddab5359fae7d819c1.tar.gz
gcc-dc297297ea56b13efad4bcddab5359fae7d819c1.tar.bz2
gcc.c: Fix comment formatting.
* gcc.c: Fix comment formatting. * gccspec.c: Likewise. * gcov.c: Likewise. * gcse.c: Likewise. * genemit.c: Likewise. * gengenrtl.c: Likewise. * genrecog.c: Likewise. * gensupport.c: Likewise. * ggc-page.c: Likewise. * global.c: Likewise. * graph.c: Likewise. * ifcvt.c: Likewise. * integrate.c: Likewise. * lcm.c: Likewise. * libgcc2.c: Likewise. * loop.c: Likewise. * mbchar.c: Likewise. * optabs.c: Likewise. * predict.c: Likewise. * prefix.c: Likewise. * profile.c: Likewise. * protoize.c: Likewise. * real.c: Likewise. * recog.c: Likewise. * regclass.c: Likewise. * regmove.c: Likewise. * reg-stack.c: Likewise. * reload1.c: Likewise. * resource.c: Likewise. * rtlanal.c: Likewise. * rtl.c: Likewise. From-SVN: r44837
Diffstat (limited to 'gcc/reg-stack.c')
-rw-r--r--gcc/reg-stack.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c
index 54a8ab24..b859cd7 100644
--- a/gcc/reg-stack.c
+++ b/gcc/reg-stack.c
@@ -1217,7 +1217,7 @@ move_for_stack_reg (insn, regstack, pat)
/* Swap the condition on a branch, if there is one. Return true if we
found a condition to swap. False if the condition was not used as
- such. */
+ such. */
static int
swap_rtx_condition_1 (pat)
@@ -1773,13 +1773,13 @@ subst_stack_regs_pat (insn, regstack, pat)
break;
case IF_THEN_ELSE:
- /* This insn requires the top of stack to be the destination. */
+ /* This insn requires the top of stack to be the destination. */
/* If the comparison operator is an FP comparison operator,
it is handled correctly by compare_for_stack_reg () who
will move the destination to the top of stack. But if the
comparison operator is not an FP comparison operator, we
- have to handle it here. */
+ have to handle it here. */
if (get_hard_regnum (regstack, *dest) >= FIRST_STACK_REG
&& REGNO (*dest) != regstack->reg[regstack->top])
emit_swap_insn (insn, regstack, *dest);
@@ -1826,7 +1826,7 @@ subst_stack_regs_pat (insn, regstack, pat)
}
/* Make dest the top of stack. Add dest to regstack if
- not present. */
+ not present. */
if (get_hard_regnum (regstack, *dest) < FIRST_STACK_REG)
regstack->reg[++regstack->top] = REGNO (*dest);
SET_HARD_REG_BIT (regstack->reg_set, REGNO (*dest));