* tree-ssa-alias.c (may_alias_p): Remove v_ann.

From-SVN: r96188
This commit is contained in:
Kazu Hirata 2005-03-09 11:36:47 +00:00 committed by Kazu Hirata
parent dc3fcf39b4
commit a92b9bdfc5
2 changed files with 3 additions and 2 deletions

View File

@ -30,6 +30,8 @@
* tree-sra.c (decide_block_copy): Remove inst_count.
* tree-ssa-alias.c (may_alias_p): Remove v_ann.
2005-03-08 Jeff Law <law@redhat.com>
* tree-cfg.c (cleanup_control_flow): If removal of a computed

View File

@ -1600,7 +1600,7 @@ may_alias_p (tree ptr, HOST_WIDE_INT mem_alias_set,
tree var, HOST_WIDE_INT var_alias_set)
{
tree mem;
var_ann_t v_ann, m_ann;
var_ann_t m_ann;
alias_stats.alias_queries++;
alias_stats.simple_queries++;
@ -1614,7 +1614,6 @@ may_alias_p (tree ptr, HOST_WIDE_INT mem_alias_set,
return false;
}
v_ann = var_ann (var);
m_ann = var_ann (mem);
gcc_assert (m_ann->mem_tag_kind == TYPE_TAG);