2006-02-23 Daniel Berlin <dberlin@dberlin.org>
Fix PR tree-optimization/26376
* tree-ssa-structalias.c (find_func_aliases): Use get_id_for_tree,
remove assert.
From-SVN: r111392
+2006-02-23 Daniel Berlin <dberlin@dberlin.org>
+
+ Fix PR tree-optimization/26376
+ * tree-ssa-structalias.c (find_func_aliases): Use get_id_for_tree,
+ remove assert.
+
2006-02-23 Jakub Jelinek <jakub@redhat.com>
PR middle-end/26412
tree lhsop;
tree rhsop;
unsigned int varid;
- bool found = false;
tree arglist;
varinfo_t fi;
int i = 1;
we should still be able to handle. */
if (decl)
{
- found = lookup_id_for_tree (decl, &varid);
- gcc_assert (found);
+ varid = get_id_for_tree (decl);
}
else
{
decl = TREE_OPERAND (rhsop, 0);
- found = lookup_id_for_tree (decl, &varid);
- gcc_assert (found);
+ varid = get_id_for_tree (decl);
}
/* Assign all the passed arguments to the appropriate incoming
arg = DECL_ARGUMENTS (decl);
-
/* Set up variables for each argument. */
for (i = 1; i < vi->fullsize; i++)
{