diff options
author | Kazu Hirata <kazu@hxi.com> | 2002-01-18 13:40:36 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-01-18 13:40:36 +0000 |
commit | 3ef42a0c4f590a9d67b46c5aecfa5fea4546b174 (patch) | |
tree | 5c9fe756812fe0ac947a0d1762e2cb3c3e7adaf6 /gcc/function.c | |
parent | 72f02bb9dc9b7ddd0462af34f44009f699ecaf8a (diff) | |
download | gcc-3ef42a0c4f590a9d67b46c5aecfa5fea4546b174.zip gcc-3ef42a0c4f590a9d67b46c5aecfa5fea4546b174.tar.gz gcc-3ef42a0c4f590a9d67b46c5aecfa5fea4546b174.tar.bz2 |
bitmap.h: Fix comment formatting.
* bitmap.h: Fix comment formatting.
* combine.c: Likewise.
* cppfiles.c: Likewise.
* c-pragma.h: Likewise.
* c-typeck.c: Likewise.
* df.c: Likewise.
* dwarf2out.c: Likewise.
* function.c: Likewise.
* gcc.c: Likewise.
* genattrtab.c: Likewise.
* gthr-win32.h: Likewise.
* haifa-sched.c: Likewise.
* predict.c: Likewise.
* rtlanal.c: Likewise.
* rtl.h: Likewise.
* unwind-dw2-fde.h: Likewise.
* unwind-pe.h: Likewise.
* vmsdbgout.c: Likewise.
From-SVN: r48987
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/function.c b/gcc/function.c index 12300f3..4cff6bb 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -5139,7 +5139,7 @@ promoted_input_arg (regno, pmode, punsignedp) /* offset_ptr will be negative for ARGS_GROW_DOWNWARD case; initial_offset_ptr is positive because locate_and_pad_parm's callers pass in the total size of args so far as - initial_offset_ptr. arg_size_ptr is always positive.*/ + initial_offset_ptr. arg_size_ptr is always positive. */ void locate_and_pad_parm (passed_mode, type, in_regs, fndecl, @@ -7164,7 +7164,7 @@ struct epi_info { rtx sp_equiv_reg; /* REG that SP is set from, perhaps SP. */ HOST_WIDE_INT sp_offset; /* Offset from SP_EQUIV_REG of present SP. */ - rtx new_sp_equiv_reg; /* REG to be used at end of insn. */ + rtx new_sp_equiv_reg; /* REG to be used at end of insn. */ HOST_WIDE_INT new_sp_offset; /* Offset to be used at end of insn. */ rtx equiv_reg_src; /* If nonzero, the value that SP_EQUIV_REG should be set to once we no longer need @@ -7184,7 +7184,7 @@ keep_stack_depressed (seq) int i, j; struct epi_info info; - /* If the epilogue is just a single instruction, it ust be OK as is. */ + /* If the epilogue is just a single instruction, it ust be OK as is. */ if (GET_CODE (seq) != SEQUENCE) return seq; |