diff options
author | Jason Merrill <jason@redhat.com> | 2000-06-15 17:24:39 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2000-06-15 17:24:39 -0400 |
commit | 297a5329dca4f22150ec201d48b8de8a730f6447 (patch) | |
tree | 8ef4fe73525824ae88ccfba0772d1ad4632e748a /gcc/cp/optimize.c | |
parent | f5e6b7bc9e27420b063970b49bb62bcea1bff43d (diff) | |
download | gcc-297a5329dca4f22150ec201d48b8de8a730f6447.zip gcc-297a5329dca4f22150ec201d48b8de8a730f6447.tar.gz gcc-297a5329dca4f22150ec201d48b8de8a730f6447.tar.bz2 |
tree.c (count_trees): New debugging function.
* tree.c (count_trees): New debugging function.
* typeck.c (build_x_function_call): Use DECL_FUNCTION_TEMPLATE_P.
* init.c (build_member_call): Pull out the name of a DECL.
* Makefile.in (semantics.o, pt.o): Depend on TIMEVAR_H.
* semantics.c (expand_body): Push to TV_INTEGRATION here.
* optimize.c (optimize_function): Not here.
* pt.c (instantiate_decl): Push to TV_PARSE.
From-SVN: r34568
Diffstat (limited to 'gcc/cp/optimize.c')
-rw-r--r-- | gcc/cp/optimize.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/cp/optimize.c b/gcc/cp/optimize.c index b803627..1cf5bd7 100644 --- a/gcc/cp/optimize.c +++ b/gcc/cp/optimize.c @@ -28,7 +28,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "input.h" #include "integrate.h" #include "varray.h" -#include "timevar.h" /* To Do: @@ -810,8 +809,6 @@ optimize_function (fn) tree prev_fn; struct saved_scope *s; - timevar_push (TV_INTEGRATION); - /* Clear out ID. */ memset (&id, 0, sizeof (id)); @@ -842,8 +839,6 @@ optimize_function (fn) /* Clean up. */ VARRAY_FREE (id.fns); VARRAY_FREE (id.target_exprs); - - timevar_pop (TV_INTEGRATION); } } |