Commit 4e9b57fa by Ben Elliston Committed by Ben Elliston

rtlanal.c: Fix uses of "it's" with "its" where appropriate.

	* rtlanal.c: Fix uses of "it's" with "its" where appropriate.
	* cp/typeck.c: Likewise.
	* cp/tree.c: Likewise.
	* gimple-low.c: Likewise.
	* jump.c: Likewise.

From-SVN: r139591
parent 058e97ec
2008-08-26 Ben Elliston <bje@au.ibm.com>
* rtlanal.c: Fix uses of "it's" with "its" where appropriate.
* cp/typeck.c: Likewise.
* cp/tree.c: Likewise.
* gimple-low.c: Likewise.
* jump.c: Likewise.
2008-08-26 Vladimir Makarov <vmakarov@redhat.com> 2008-08-26 Vladimir Makarov <vmakarov@redhat.com>
* ira-build.c, ira-color.c, ira-costs.c, ira.h, ira-lives.c, * ira-build.c, ira-color.c, ira-costs.c, ira.h, ira-lives.c,
......
...@@ -2088,7 +2088,7 @@ is_dummy_object (const_tree ob) ...@@ -2088,7 +2088,7 @@ is_dummy_object (const_tree ob)
int int
pod_type_p (const_tree t) pod_type_p (const_tree t)
{ {
/* This CONST_CAST is okay because strip_array_types returns it's /* This CONST_CAST is okay because strip_array_types returns its
argument unmodified and we assign it to a const_tree. */ argument unmodified and we assign it to a const_tree. */
t = strip_array_types (CONST_CAST_TREE(t)); t = strip_array_types (CONST_CAST_TREE(t));
...@@ -2127,7 +2127,7 @@ class_tmpl_impl_spec_p (const_tree t) ...@@ -2127,7 +2127,7 @@ class_tmpl_impl_spec_p (const_tree t)
int int
zero_init_p (const_tree t) zero_init_p (const_tree t)
{ {
/* This CONST_CAST is okay because strip_array_types returns it's /* This CONST_CAST is okay because strip_array_types returns its
argument unmodified and we assign it to a const_tree. */ argument unmodified and we assign it to a const_tree. */
t = strip_array_types (CONST_CAST_TREE(t)); t = strip_array_types (CONST_CAST_TREE(t));
......
...@@ -7103,7 +7103,7 @@ comp_ptr_ttypes_const (tree to, tree from) ...@@ -7103,7 +7103,7 @@ comp_ptr_ttypes_const (tree to, tree from)
int int
cp_type_quals (const_tree type) cp_type_quals (const_tree type)
{ {
/* This CONST_CAST is okay because strip_array_types returns it's /* This CONST_CAST is okay because strip_array_types returns its
argument unmodified and we assign it to a const_tree. */ argument unmodified and we assign it to a const_tree. */
type = strip_array_types (CONST_CAST_TREE(type)); type = strip_array_types (CONST_CAST_TREE(type));
if (type == error_mark_node) if (type == error_mark_node)
...@@ -7117,7 +7117,7 @@ cp_type_quals (const_tree type) ...@@ -7117,7 +7117,7 @@ cp_type_quals (const_tree type)
bool bool
cp_type_readonly (const_tree type) cp_type_readonly (const_tree type)
{ {
/* This CONST_CAST is okay because strip_array_types returns it's /* This CONST_CAST is okay because strip_array_types returns its
argument unmodified and we assign it to a const_tree. */ argument unmodified and we assign it to a const_tree. */
type = strip_array_types (CONST_CAST_TREE(type)); type = strip_array_types (CONST_CAST_TREE(type));
return TYPE_READONLY (type); return TYPE_READONLY (type);
...@@ -7128,7 +7128,7 @@ cp_type_readonly (const_tree type) ...@@ -7128,7 +7128,7 @@ cp_type_readonly (const_tree type)
bool bool
cp_has_mutable_p (const_tree type) cp_has_mutable_p (const_tree type)
{ {
/* This CONST_CAST is okay because strip_array_types returns it's /* This CONST_CAST is okay because strip_array_types returns its
argument unmodified and we assign it to a const_tree. */ argument unmodified and we assign it to a const_tree. */
type = strip_array_types (CONST_CAST_TREE(type)); type = strip_array_types (CONST_CAST_TREE(type));
......
...@@ -496,7 +496,7 @@ gimple_try_catch_may_fallthru (gimple stmt) ...@@ -496,7 +496,7 @@ gimple_try_catch_may_fallthru (gimple stmt)
bool bool
block_may_fallthru (const_tree block) block_may_fallthru (const_tree block)
{ {
/* This CONST_CAST is okay because expr_last returns it's argument /* This CONST_CAST is okay because expr_last returns its argument
unmodified and we assign it to a const_tree. */ unmodified and we assign it to a const_tree. */
const_tree stmt = expr_last (CONST_CAST_TREE(block)); const_tree stmt = expr_last (CONST_CAST_TREE(block));
......
...@@ -351,7 +351,7 @@ reversed_comparison_code_parts (enum rtx_code code, const_rtx arg0, ...@@ -351,7 +351,7 @@ reversed_comparison_code_parts (enum rtx_code code, const_rtx arg0,
return UNKNOWN; return UNKNOWN;
/* These CONST_CAST's are okay because prev_nonnote_insn just /* These CONST_CAST's are okay because prev_nonnote_insn just
returns it's argument and we assign it to a const_rtx returns its argument and we assign it to a const_rtx
variable. */ variable. */
for (prev = prev_nonnote_insn (CONST_CAST_RTX(insn)); for (prev = prev_nonnote_insn (CONST_CAST_RTX(insn));
prev != 0 && !LABEL_P (prev); prev != 0 && !LABEL_P (prev);
......
...@@ -3399,7 +3399,7 @@ keep_with_call_p (const_rtx insn) ...@@ -3399,7 +3399,7 @@ keep_with_call_p (const_rtx insn)
if (SET_DEST (set) == stack_pointer_rtx) if (SET_DEST (set) == stack_pointer_rtx)
{ {
/* This CONST_CAST is okay because next_nonnote_insn just /* This CONST_CAST is okay because next_nonnote_insn just
returns it's argument and we assign it to a const_rtx returns its argument and we assign it to a const_rtx
variable. */ variable. */
const_rtx i2 = next_nonnote_insn (CONST_CAST_RTX(insn)); const_rtx i2 = next_nonnote_insn (CONST_CAST_RTX(insn));
if (i2 && keep_with_call_p (i2)) if (i2 && keep_with_call_p (i2))
......
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