sem_function::bb_dict_test should take a vec<int> *
authorTrevor Saunders <tsaunders@mozilla.com>
Thu, 19 Feb 2015 01:44:42 +0000 (01:44 +0000)
committerTrevor Saunders <tbsaunde@gcc.gnu.org>
Thu, 19 Feb 2015 01:44:42 +0000 (01:44 +0000)
bb_dict_test () ment to operate on the callers vector, not a copy of it.

gcc/ChangeLog:

2015-02-18  Trevor Saunders  <tsaunders@mozilla.com>

* ipa-icf.c (sem_function::equals_private): Adjust.
(sem_function::bb_dict_test): Take a vec<int> * instead of
auto_vec<int>.
* ipa-icf.h (bb_dict_test): Likewise.

From-SVN: r220806

gcc/ChangeLog
gcc/ipa-icf.c
gcc/ipa-icf.h

index 07cadb36aede3a775022c2551bef8472c5a11a9a..174e5b42fdc91178f76fd3fddd7acb46af86ed47 100644 (file)
@@ -1,3 +1,10 @@
+2015-02-18  Trevor Saunders  <tsaunders@mozilla.com>
+
+       * ipa-icf.c (sem_function::equals_private): Adjust.
+       (sem_function::bb_dict_test): Take a vec<int> * instead of
+       auto_vec<int>.
+       * ipa-icf.h (bb_dict_test): Likewise.
+
 2015-02-18  Jakub Jelinek  <jakub@redhat.com>
 
        PR gcov-profile/64634
index 692946ae7b1741b7c72ff647120451946ce56b21..494fdcf08f50f375588bc068e1909109365188fc 100644 (file)
@@ -563,10 +563,10 @@ sem_function::equals_private (sem_item *item,
          if (e1->flags != e2->flags)
            return return_false_with_msg ("flags comparison returns false");
 
-         if (!bb_dict_test (bb_dict, e1->src->index, e2->src->index))
+         if (!bb_dict_test (&bb_dict, e1->src->index, e2->src->index))
            return return_false_with_msg ("edge comparison returns false");
 
-         if (!bb_dict_test (bb_dict, e1->dest->index, e2->dest->index))
+         if (!bb_dict_test (&bb_dict, e1->dest->index, e2->dest->index))
            return return_false_with_msg ("BB comparison returns false");
 
          if (!m_checker->compare_edge (e1, e2))
@@ -1053,21 +1053,21 @@ sem_function::icf_handled_component_p (tree t)
    corresponds to TARGET.  */
 
 bool
-sem_function::bb_dict_test (auto_vec<int> bb_dict, int source, int target)
+sem_function::bb_dict_test (vec<int> *bb_dict, int source, int target)
 {
   source++;
   target++;
 
-  if (bb_dict.length () <= (unsigned)source)
-    bb_dict.safe_grow_cleared (source + 1);
+  if (bb_dict->length () <= (unsigned)source)
+    bb_dict->safe_grow_cleared (source + 1);
 
-  if (bb_dict[source] == 0)
+  if ((*bb_dict)[source] == 0)
     {
-      bb_dict[source] = target;
+      (*bb_dict)[source] = target;
       return true;
     }
   else
-    return bb_dict[source] == target;
+    return (*bb_dict)[source] == target;
 }
 
 /* Iterates all tree types in T1 and T2 and returns true if all types
index adbedd65937c8b54f5793337f0d6bbe26fba1c8d..a55699b9d4040ce647b34d76a820586e31032d02 100644 (file)
@@ -275,7 +275,7 @@ private:
 
   /* Basic blocks dictionary BB_DICT returns true if SOURCE index BB
      corresponds to TARGET.  */
-  bool bb_dict_test (auto_vec<int> bb_dict, int source, int target);
+  bool bb_dict_test (vec<int> *bb_dict, int source, int target);
 
   /* Iterates all tree types in T1 and T2 and returns true if all types
      are compatible. If COMPARE_POLYMORPHIC is set to true,