ree.c (rest_of_handle_ree): Remove redundant timevar push/pop.
authorRichard Biener <rguenther@suse.de>
Mon, 15 Aug 2016 11:07:52 +0000 (11:07 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Mon, 15 Aug 2016 11:07:52 +0000 (11:07 +0000)
2016-08-15  Richard Biener  <rguenther@suse.de>

* ree.c (rest_of_handle_ree): Remove redundant timevar push/pop.
* config/i386/i386.c (pass_data_insert_vzeroupper): Account to
TV_MACH_DEP.
(pass_data_stv): Likewise.

From-SVN: r239474

gcc/ChangeLog
gcc/config/i386/i386.c
gcc/ree.c

index 4e6ffb46a3ca21002cf9902695358526eca6b710..2b5355d0f9f6a91a2fd92dedc552a22212705eca 100644 (file)
@@ -1,3 +1,10 @@
+2016-08-15  Richard Biener  <rguenther@suse.de>
+
+       * ree.c (rest_of_handle_ree): Remove redundant timevar push/pop.
+       * config/i386/i386.c (pass_data_insert_vzeroupper): Account to
+       TV_MACH_DEP.
+       (pass_data_stv): Likewise.
+
 2016-08-15  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/73434
index 62896bfbb1e08625ad23f4564314b6eeac9a42d1..7170194a3a176a3ea2cd20c5334ad19a99895d24 100644 (file)
@@ -4057,7 +4057,7 @@ const pass_data pass_data_insert_vzeroupper =
   RTL_PASS, /* type */
   "vzeroupper", /* name */
   OPTGROUP_NONE, /* optinfo_flags */
-  TV_NONE, /* tv_id */
+  TV_MACH_DEP, /* tv_id */
   0, /* properties_required */
   0, /* properties_provided */
   0, /* properties_destroyed */
@@ -4092,7 +4092,7 @@ const pass_data pass_data_stv =
   RTL_PASS, /* type */
   "stv", /* name */
   OPTGROUP_NONE, /* optinfo_flags */
-  TV_NONE, /* tv_id */
+  TV_MACH_DEP, /* tv_id */
   0, /* properties_required */
   0, /* properties_provided */
   0, /* properties_destroyed */
index 3245ac58fa8d43b87d0823dd10ca1628502dfa70..2929277bfd0bef0c320411e5c0c5344bbdc77763 100644 (file)
--- a/gcc/ree.c
+++ b/gcc/ree.c
@@ -1247,9 +1247,7 @@ find_and_remove_re (void)
 static unsigned int
 rest_of_handle_ree (void)
 {
-  timevar_push (TV_REE);
   find_and_remove_re ();
-  timevar_pop (TV_REE);
   return 0;
 }