ipa-polymorphic-call.c (noncall_stmt_may_be_vtbl_ptr_store): Fix a comment typo,...
authorJakub Jelinek <jakub@redhat.com>
Fri, 8 Dec 2017 16:47:06 +0000 (17:47 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Fri, 8 Dec 2017 16:47:06 +0000 (17:47 +0100)
* ipa-polymorphic-call.c (noncall_stmt_may_be_vtbl_ptr_store): Fix
a comment typo, get_base_ref_and_offset -> get_ref_base_and_extent.
* ipa-prop.c (stmt_may_be_vtbl_ptr_store): Likewise.

From-SVN: r255513

gcc/ChangeLog
gcc/ipa-polymorphic-call.c
gcc/ipa-prop.c

index bf4dc0049945d95a520173f2d8b4f500cda5cfb1..c0d1662854e96fdfcbd2e3682850c8ad1af92247 100644 (file)
@@ -1,3 +1,9 @@
+2017-12-08  Jakub Jelinek  <jakub@redhat.com>
+
+       * ipa-polymorphic-call.c (noncall_stmt_may_be_vtbl_ptr_store): Fix
+       a comment typo, get_base_ref_and_offset -> get_ref_base_and_extent.
+       * ipa-prop.c (stmt_may_be_vtbl_ptr_store): Likewise.
+
 2017-12-08  Richard Biener  <rguenther@suse.de>
 
        PR middle-end/81782
index 1c5aca4abdcfe4f9f1871092b326a23d3a259996..2978fa36089e14a5f45970ecbdc25b47833263b5 100644 (file)
@@ -1149,7 +1149,7 @@ noncall_stmt_may_be_vtbl_ptr_store (gimple *stmt)
          if (TREE_CODE (lhs) == COMPONENT_REF
              && !DECL_VIRTUAL_P (TREE_OPERAND (lhs, 1)))
            return false;
-         /* In the future we might want to use get_base_ref_and_offset to find
+         /* In the future we might want to use get_ref_base_and_extent to find
             if there is a field corresponding to the offset and if so, proceed
             almost like if it was a component ref.  */
        }
index 31879a747c01ffeecf564316366868a7838f5d54..ddbef7ff22dbfd55e2c5dceb8d85c29e2807c681 100644 (file)
@@ -652,7 +652,7 @@ stmt_may_be_vtbl_ptr_store (gimple *stmt)
          if (TREE_CODE (lhs) == COMPONENT_REF
              && !DECL_VIRTUAL_P (TREE_OPERAND (lhs, 1)))
            return false;
-         /* In the future we might want to use get_base_ref_and_offset to find
+         /* In the future we might want to use get_ref_base_and_extent to find
             if there is a field corresponding to the offset and if so, proceed
             almost like if it was a component ref.  */
        }