Remove dead code in IPA ICF.
authorMartin Liska <mliska@suse.cz>
Tue, 4 Jun 2019 14:39:47 +0000 (16:39 +0200)
committerMartin Liska <marxin@gcc.gnu.org>
Tue, 4 Jun 2019 14:39:47 +0000 (14:39 +0000)
2019-06-04  Martin Liska  <mliska@suse.cz>

* ipa-icf.c (INCLUDE_LIST): Remove.
(sem_item_optimizer::execute): Remove call to init_wpa.
* ipa-icf.h (init_wpa): Remove.

From-SVN: r271908

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

index 3d1f36d..32a7e9c 100644 (file)
@@ -1,3 +1,9 @@
+2019-06-04  Martin Liska  <mliska@suse.cz>
+
+       * ipa-icf.c (INCLUDE_LIST): Remove.
+       (sem_item_optimizer::execute): Remove call to init_wpa.
+       * ipa-icf.h (init_wpa): Remove.
+
 2019-06-04  Jakub Jelinek  <jakub@redhat.com>
 
        * gimplify.c (gimplify_scan_omp_clauses): Don't sorry_at on lastprivate
index 19b45b3..7b26820 100644 (file)
@@ -52,7 +52,6 @@ along with GCC; see the file COPYING3.  If not see
 */
 
 #include "config.h"
-#define INCLUDE_LIST
 #include "system.h"
 #include "coretypes.h"
 #include "backend.h"
@@ -2545,9 +2544,6 @@ sem_item_optimizer::execute (void)
     fprintf (dump_file, "Dump after hash based groups\n");
   dump_cong_classes ();
 
-  for (unsigned int i = 0; i < m_items.length(); i++)
-    m_items[i]->init_wpa ();
-
   subdivide_classes_by_equality (true);
 
   if (dump_file)
index 6b81eb3..2bf0f15 100644 (file)
@@ -190,9 +190,6 @@ public:
   /* Dump function for debugging purpose.  */
   DEBUG_FUNCTION void dump (void);
 
-  /* Initialize semantic item by info reachable during LTO WPA phase.  */
-  virtual void init_wpa (void) = 0;
-
   /* Semantic item initialization function.  */
   virtual void init (void) = 0;
 
@@ -325,10 +322,6 @@ public:
 
   ~sem_function ();
 
-  inline virtual void init_wpa (void)
-  {
-  }
-
   virtual void init (void);
   virtual bool equals_wpa (sem_item *item,
                           hash_map <symtab_node *, sem_item *> &ignored_nodes);
@@ -432,8 +425,6 @@ public:
 
   sem_variable (varpool_node *_node, bitmap_obstack *stack);
 
-  inline virtual void init_wpa (void) {}
-
   /* Semantic variable initialization function.  */
   inline virtual void init (void)
   {