Commit a92b9bdf by Kazu Hirata Committed by Kazu Hirata

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

From-SVN: r96188
parent dc3fcf39
......@@ -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
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment