]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* timevar.def (TV_PHASE_DBGINFO): Delete.
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 10 Feb 2016 11:22:29 +0000 (11:22 +0000)
committerebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 10 Feb 2016 11:22:29 +0000 (11:22 +0000)
(TV_PHASE_CHECK_DBGINFO): Likewise.
* varpool.c (varpool_node::assemble_decl): Do not change timevar.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@233264 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/timevar.def
gcc/varpool.c

index 3f3f734afe8d1cf601c187760f7bb1f41167826a..70290d9aabb82fc42d29aba54cea78642be7b3ba 100644 (file)
@@ -1,3 +1,9 @@
+2016-02-10  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * timevar.def (TV_PHASE_DBGINFO): Delete.
+       (TV_PHASE_CHECK_DBGINFO): Likewise.
+       * varpool.c (varpool_node::assemble_decl): Do not change timevar.
+
 2016-02-10  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/69719
index d9a5066727b5e8aba380839258441131a243b997..76b008ec9c1fe2a8bb8cb0b8998dfc9fc11b7349 100644 (file)
@@ -43,8 +43,6 @@ DEFTIMEVAR (TV_PHASE_PARSING         , "phase parsing")
 DEFTIMEVAR (TV_PHASE_DEFERRED        , "phase lang. deferred")
 DEFTIMEVAR (TV_PHASE_LATE_PARSING_CLEANUPS, "phase late parsing cleanups")
 DEFTIMEVAR (TV_PHASE_OPT_GEN         , "phase opt and generate")
-DEFTIMEVAR (TV_PHASE_DBGINFO         , "phase debug info")
-DEFTIMEVAR (TV_PHASE_CHECK_DBGINFO   , "phase check & debug info")
 DEFTIMEVAR (TV_PHASE_LATE_ASM        , "phase last asm")
 DEFTIMEVAR (TV_PHASE_STREAM_IN       , "phase stream in")
 DEFTIMEVAR (TV_PHASE_STREAM_OUT      , "phase stream out")
index d88343cdc091f7a328cb3ee3e8b5817af50af856..cbbdda41369e49dc1a76740eb19d2c152a21ad4b 100644 (file)
@@ -586,9 +586,7 @@ varpool_node::assemble_decl (void)
       /* After the parser has generated debugging information, augment
         this information with any new location/etc information that may
         have become available after the compilation proper.  */
-      timevar_start (TV_PHASE_DBGINFO);
       debug_hooks->late_global_decl (decl);
-      timevar_stop (TV_PHASE_DBGINFO);
       return true;
     }