diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 66e0e1d3f1c..6acce34bfec 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-11-10 Hans-Peter Nilsson + + * tree-ssa-structalias.c (heapvar_lookup): Fix typo: stmt to from. + 2005-11-04 Jeff Law PR middle-end/23181 diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c index db230af7240..128b142a380 100644 --- a/gcc/tree-ssa-structalias.c +++ b/gcc/tree-ssa-structalias.c @@ -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;