diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2005-11-10 18:53:24 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2005-11-10 18:53:24 +0000 |
commit | f5d7990b73bad33f36b34d5f36492a6d5e3912b5 (patch) | |
tree | efa6089fdf0a6b4c3288afc4edcf82548802bf10 /gcc/tree-ssa-structalias.c | |
parent | ae14e67b2f07321ced085681e771e246d9ab2341 (diff) | |
download | gcc-f5d7990b73bad33f36b34d5f36492a6d5e3912b5.zip gcc-f5d7990b73bad33f36b34d5f36492a6d5e3912b5.tar.gz gcc-f5d7990b73bad33f36b34d5f36492a6d5e3912b5.tar.bz2 |
* tree-ssa-structalias.c (heapvar_lookup): Fix typo: stmt to from.
From-SVN: r106746
Diffstat (limited to 'gcc/tree-ssa-structalias.c')
-rw-r--r-- | gcc/tree-ssa-structalias.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c index db230af..128b142 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; |