* tree-ssa-phiopt.c (tree_ssa_phiopt): Remove local variable
removed_phis.
+ * tree-ssa-pre.c (compute_avail): Remove local variable val.
+ (mark_operand_necessary): Remove local variable ver.
+
2005-03-12 Geoffrey Keating <geoffk@apple.com>
* c-lex.c (c_lex_with_flags): Add parameter to call to
{
if (default_def (param) != NULL)
{
- tree val;
tree def = default_def (param);
- val = vn_lookup_or_add (def, NULL);
+ vn_lookup_or_add (def, NULL);
bitmap_insert_into_set (TMP_GEN (ENTRY_BLOCK_PTR), def);
bitmap_value_insert_into_set (AVAIL_OUT (ENTRY_BLOCK_PTR), def);
}
mark_operand_necessary (tree op, VEC(tree_on_heap) **worklist)
{
tree stmt;
- int ver;
gcc_assert (op);
- ver = SSA_NAME_VERSION (op);
-
stmt = SSA_NAME_DEF_STMT (op);
gcc_assert (stmt);