aboutsummaryrefslogtreecommitdiff
path: root/gcc/alias.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2003-02-26 12:09:33 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2003-02-26 11:09:33 +0000
commit0d446150c298b2048d18e354ee47b130ed3b8e7f (patch)
treeddc33e157eac05f7cef3bb3604e16a7dd67cba78 /gcc/alias.c
parent9541e2e3d91f99cacd1cd724a956019281e760d5 (diff)
downloadgcc-0d446150c298b2048d18e354ee47b130ed3b8e7f.zip
gcc-0d446150c298b2048d18e354ee47b130ed3b8e7f.tar.gz
gcc-0d446150c298b2048d18e354ee47b130ed3b8e7f.tar.bz2
objc-act.c: Include cgraph.h
* objc-act.c: Include cgraph.h (mark_referenced_methods): New function. (objc_init): Call it. * objc-lang.c (LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION): Set. * c-decl.c (finish_function): Honor can_defer_p even in unit-at-a-time mode. * optabs.c (expand_fix): Do not widen the input operand. * expr.c (emit_group_store): Fix crash when converting single register into complex register. * Makefile.in (jump.o, regclass.o, alias.o): Add dependency on timevar.h * alias.c: Include timevar.h (init_alias_analysis): Set timevar * jump.c: Include timevar.h (rebuild_jump_labels): Set timevar * regcalss.c: Include timevar.h (reg_scan): Set timevar * timevar.def (TV_ALIAS_ANALYSIS, TV_REG_SCAN, TV_REBUILD_JUMP): New From-SVN: r63464
Diffstat (limited to 'gcc/alias.c')
-rw-r--r--gcc/alias.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/alias.c b/gcc/alias.c
index de8d8d7..9be3aa0 100644
--- a/gcc/alias.c
+++ b/gcc/alias.c
@@ -39,6 +39,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
#include "splay-tree.h"
#include "ggc.h"
#include "langhooks.h"
+#include "timevar.h"
#include "target.h"
/* The alias sets assigned to MEMs assist the back-end in determining
@@ -2745,6 +2746,8 @@ init_alias_analysis ()
unsigned int ui;
rtx insn;
+ timevar_push (TV_ALIAS_ANALYSIS);
+
reg_known_value_size = maxreg;
reg_known_value
@@ -2950,6 +2953,7 @@ init_alias_analysis ()
new_reg_base_value = 0;
free (reg_seen);
reg_seen = 0;
+ timevar_pop (TV_ALIAS_ANALYSIS);
}
void