diff options
| author | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-10 18:53:24 +0000 |
|---|---|---|
| committer | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-10 18:53:24 +0000 |
| commit | 495ef375f491e7d2aec1ec63ae9d4d75a3eca14c (patch) | |
| tree | efa6089fdf0a6b4c3288afc4edcf82548802bf10 | |
| parent | f7449ceb0875fd2f633356e0060ae12cf83bc6b6 (diff) | |
| download | ppe42-gcc-495ef375f491e7d2aec1ec63ae9d4d75a3eca14c.tar.gz ppe42-gcc-495ef375f491e7d2aec1ec63ae9d4d75a3eca14c.zip | |
* tree-ssa-structalias.c (heapvar_lookup): Fix typo: stmt to from.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@106746 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/tree-ssa-structalias.c | 4 |
2 files changed, 6 insertions, 2 deletions
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 <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 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; |

