* tree-ssa-structalias.c (heapvar_lookup): Fix typo: stmt to from.

From-SVN: r106746
This commit is contained in:
Hans-Peter Nilsson 2005-11-10 18:53:24 +00:00 committed by Hans-Peter Nilsson
parent ae14e67b2f
commit f5d7990b73
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2005-11-10 Hans-Peter Nilsson <hp@axis.com>
* tree-ssa-structalias.c (heapvar_lookup): Fix typo: stmt to from.
2005-11-04 Jeff Law <law@redhat.com>
PR middle-end/23181

View File

@ -311,10 +311,10 @@ static tree anyoffset_tree;
static unsigned int anyoffset_id;
/* Lookup a heap var for STMT, and return it if we find one. */
/* Lookup a heap var for FROM, and return it if we find one. */
static tree
heapvar_lookup (tree stmt)
heapvar_lookup (tree from)
{
struct tree_map *h, in;
in.from = from;