aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp
diff options
context:
space:
mode:
authorBen Elliston <bje@au.ibm.com>2008-08-26 13:27:31 +0000
committerBen Elliston <bje@gcc.gnu.org>2008-08-26 23:27:31 +1000
commit4e9b57fad9889f89c76e0cba1b47d7387a42ea49 (patch)
tree716c140c6389b8cf4fb3e177e8651261149de57c /gcc/cp
parent058e97ecf33ad0dfd926b3876a4bcf59ac9556ff (diff)
downloadgcc-4e9b57fad9889f89c76e0cba1b47d7387a42ea49.zip
gcc-4e9b57fad9889f89c76e0cba1b47d7387a42ea49.tar.gz
gcc-4e9b57fad9889f89c76e0cba1b47d7387a42ea49.tar.bz2
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
Diffstat (limited to 'gcc/cp')
-rw-r--r--gcc/cp/tree.c4
-rw-r--r--gcc/cp/typeck.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/gcc/cp/tree.c b/gcc/cp/tree.c
index 8168297..f9df932 100644
--- a/gcc/cp/tree.c
+++ b/gcc/cp/tree.c
@@ -2088,7 +2088,7 @@ is_dummy_object (const_tree ob)
int
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. */
t = strip_array_types (CONST_CAST_TREE(t));
@@ -2127,7 +2127,7 @@ class_tmpl_impl_spec_p (const_tree t)
int
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. */
t = strip_array_types (CONST_CAST_TREE(t));
diff --git a/gcc/cp/typeck.c b/gcc/cp/typeck.c
index df126e8..410174c 100644
--- a/gcc/cp/typeck.c
+++ b/gcc/cp/typeck.c
@@ -7103,7 +7103,7 @@ comp_ptr_ttypes_const (tree to, tree from)
int
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. */
type = strip_array_types (CONST_CAST_TREE(type));
if (type == error_mark_node)
@@ -7117,7 +7117,7 @@ cp_type_quals (const_tree type)
bool
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. */
type = strip_array_types (CONST_CAST_TREE(type));
return TYPE_READONLY (type);
@@ -7128,7 +7128,7 @@ cp_type_readonly (const_tree type)
bool
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. */
type = strip_array_types (CONST_CAST_TREE(type));