diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-27 14:47:55 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-27 14:47:55 +0000 |
commit | 45498ea14d2f4cf09b4db9acbd3d73585f5dffb4 (patch) | |
tree | 64a1566fa3db7d5ae984e75042d42c81d8226d00 /gcc/reg-stack.c | |
parent | 8c2e6a918f58eb29f43fcdf736dfab484d4e4d9d (diff) | |
download | gcc-45498ea14d2f4cf09b4db9acbd3d73585f5dffb4.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@58583 138bc75d-0d04-0410-961f-82ee72b054a4
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 eafc1e4df80..4d37cecc886 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 (); |