Commit 24fc18b9 by Kazu Hirata Committed by Kazu Hirata

elfos.h, [...]: Fix comment typos.

	* config/elfos.h, config/spu/spu.c, tree-ssa-operands.h,
	tree-ssa-ter.c: Fix comment typos.

From-SVN: r120149
parent 14c52eca
2006-12-22 Kazu Hirata <kazu@codesourcery.com>
* config/elfos.h, config/spu/spu.c, tree-ssa-operands.h,
tree-ssa-ter.c: Fix comment typos.
2006-12-22 Paolo Bonzini <bonzini@gnu.org> 2006-12-22 Paolo Bonzini <bonzini@gnu.org>
PR rtl-optimization/29840 PR rtl-optimization/29840
......
...@@ -507,7 +507,7 @@ Boston, MA 02110-1301, USA. */ ...@@ -507,7 +507,7 @@ Boston, MA 02110-1301, USA. */
/* A C statement (sans semicolon) to output to the stdio stream STREAM /* A C statement (sans semicolon) to output to the stdio stream STREAM
any text necessary for declaring the name of an external symbol any text necessary for declaring the name of an external symbol
named NAME whch is referenced in this compilation but not defined. named NAME which is referenced in this compilation but not defined.
It is needed to properly support non-default visibility. */ It is needed to properly support non-default visibility. */
#ifndef ASM_OUTPUT_EXTERNAL #ifndef ASM_OUTPUT_EXTERNAL
......
...@@ -1606,7 +1606,7 @@ spu_expand_prologue (void) ...@@ -1606,7 +1606,7 @@ spu_expand_prologue (void)
{ {
if (flag_stack_check) if (flag_stack_check)
{ {
/* We compare agains total_size-1 because /* We compare against total_size-1 because
($sp >= total_size) <=> ($sp > total_size-1) */ ($sp >= total_size) <=> ($sp > total_size-1) */
rtx scratch_v4si = gen_rtx_REG (V4SImode, REGNO (scratch_reg_0)); rtx scratch_v4si = gen_rtx_REG (V4SImode, REGNO (scratch_reg_0));
rtx sp_v4si = gen_rtx_REG (V4SImode, STACK_POINTER_REGNUM); rtx sp_v4si = gen_rtx_REG (V4SImode, STACK_POINTER_REGNUM);
...@@ -2386,7 +2386,7 @@ cpat_info(unsigned char *arr, int size, int *prun, int *pstart) ...@@ -2386,7 +2386,7 @@ cpat_info(unsigned char *arr, int size, int *prun, int *pstart)
} }
/* OP is a CONSTANT_P. Determine what instructions can be used to load /* OP is a CONSTANT_P. Determine what instructions can be used to load
it into a regiser. MODE is only valid when OP is a CONST_INT. */ it into a register. MODE is only valid when OP is a CONST_INT. */
static enum immediate_class static enum immediate_class
classify_immediate (rtx op, enum machine_mode mode) classify_immediate (rtx op, enum machine_mode mode)
{ {
......
...@@ -108,7 +108,7 @@ struct voptype_d ...@@ -108,7 +108,7 @@ struct voptype_d
typedef struct voptype_d *voptype_p; typedef struct voptype_d *voptype_p;
/* This structure represents a variable sized buffer which is allocated by the /* This structure represents a variable sized buffer which is allocated by the
operand memory manager. Operands are subalocated out of this block. The operand memory manager. Operands are suballocated out of this block. The
MEM array varies in size. */ MEM array varies in size. */
struct ssa_operand_memory_d GTY((chain_next("%h.next"))) struct ssa_operand_memory_d GTY((chain_next("%h.next")))
......
...@@ -402,7 +402,7 @@ is_replaceable_p (tree stmt) ...@@ -402,7 +402,7 @@ is_replaceable_p (tree stmt)
return false; return false;
} }
/* Leave any stmt with voltile operands alone as well. */ /* Leave any stmt with volatile operands alone as well. */
if (stmt_ann (stmt)->has_volatile_ops) if (stmt_ann (stmt)->has_volatile_ops)
return false; return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment