diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-09 16:23:47 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-09 16:23:47 +0000 |
commit | a6260fc7cbd357861d5a9b52ece9180843c26ebe (patch) | |
tree | 0298128e12299bf28f76cc3ef5ad263e2fa59173 /gcc/timevar.def | |
parent | ec0a21033a8b56a7d188dd98e50264dc5f2393fd (diff) | |
download | ppe42-gcc-a6260fc7cbd357861d5a9b52ece9180843c26ebe.tar.gz ppe42-gcc-a6260fc7cbd357861d5a9b52ece9180843c26ebe.zip |
* timevar.def: Add TV_EXPAND.
* timevar.c (timevar_print): Update timing information.
* calls.c (try_to_integrate): Push to TV_INTEGRATION for inlining.
* stmt.c (expand_return): Check for error_mark_node.
cp/:
* semantics.c (expand_body): Push to TV_EXPAND.
* optimize.c (optimize_function): Push to TV_INTEGRATION.
* decl.c (start_function): Always call announce_function.
* tinfo2.cc: Just declare abort.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34470 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/timevar.def')
-rw-r--r-- | gcc/timevar.def | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/timevar.def b/gcc/timevar.def index fcf21772c02..2f3458a9111 100644 --- a/gcc/timevar.def +++ b/gcc/timevar.def @@ -41,6 +41,7 @@ DEFTIMEVAR (TV_DUMP , "dump files") /* Timing in various stages of the compiler. */ DEFTIMEVAR (TV_PARSE , "parser") +DEFTIMEVAR (TV_EXPAND , "expand") DEFTIMEVAR (TV_VARCONST , "varconst") DEFTIMEVAR (TV_INTEGRATION , "integration") DEFTIMEVAR (TV_JUMP , "jump") |