diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-10-27 14:47:55 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-10-27 14:47:55 +0000 |
commit | 3eae4643be652fff3b1756f4462e1941da58973d (patch) | |
tree | 64a1566fa3db7d5ae984e75042d42c81d8226d00 /gcc/reg-stack.c | |
parent | e591c83de733b7de518e12d0298709c48311bad4 (diff) | |
download | gcc-3eae4643be652fff3b1756f4462e1941da58973d.zip gcc-3eae4643be652fff3b1756f4462e1941da58973d.tar.gz gcc-3eae4643be652fff3b1756f4462e1941da58973d.tar.bz2 |
combine.c: Fix comment formatting.
* combine.c: Fix comment formatting.
* loop.c: Likewise.
* real.c: Likewise.
* regclass.c: Likewise.
* regmove.c: Likewise.
* regrename.c: Likewise.
* reg-stack.c: Likewise.
* reload1.c: Likewise.
* reload.c: Likewise.
* reload.h: Likewise.
* unroll.c: Likewise.
From-SVN: r58583
Diffstat (limited to 'gcc/reg-stack.c')
-rw-r--r-- | gcc/reg-stack.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c index eafc1e4..4d37cec 100644 --- a/gcc/reg-stack.c +++ b/gcc/reg-stack.c @@ -222,7 +222,7 @@ enum emit_where /* The block we're currently working on. */ static basic_block current_block; -/* This is the register file for all register after conversion */ +/* This is the register file for all register after conversion. */ static rtx FP_mode_reg[LAST_STACK_REG+1-FIRST_STACK_REG][(int) MAX_MACHINE_MODE]; @@ -379,7 +379,7 @@ straighten_stack (insn, regstack) change_stack (insn, regstack, &temp_stack, EMIT_AFTER); } -/* Pop a register from the stack */ +/* Pop a register from the stack. */ static void pop_stack (regstack, regno) @@ -390,7 +390,7 @@ pop_stack (regstack, regno) CLEAR_HARD_REG_BIT (regstack->reg_set, regno); regstack->top--; - /* If regno was not at the top of stack then adjust stack */ + /* If regno was not at the top of stack then adjust stack. */ if (regstack->reg [top] != regno) { int i; @@ -1125,7 +1125,7 @@ move_for_stack_reg (insn, regstack, pat) return; } - /* The destination ought to be dead */ + /* The destination ought to be dead. */ if (get_hard_regnum (regstack, dest) >= FIRST_STACK_REG) abort (); @@ -1181,7 +1181,7 @@ move_for_stack_reg (insn, regstack, pat) stack. The stack mapping is changed to reflect that DEST is now at top of stack. */ - /* The destination ought to be dead */ + /* The destination ought to be dead. */ if (get_hard_regnum (regstack, dest) >= FIRST_STACK_REG) abort (); |