diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-12 23:40:53 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-12 23:40:53 +0000 |
commit | aa40f56162c529feae5e13986bf6c46cf9b39245 (patch) | |
tree | f8425171fd5a2b92510be46813648f3e6a1d9f61 /gcc/reg-stack.c | |
parent | fb0df687d6dae20c622958b0203f1d5390996ed2 (diff) | |
download | gcc-aa40f56162c529feae5e13986bf6c46cf9b39245.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44837 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/reg-stack.c')
-rw-r--r-- | gcc/reg-stack.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c index 54a8ab2472b..b859cd71195 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)); |