* integrate.c (copy_decl_list): Fix typo.

From-SVN: r22423
This commit is contained in:
Mark Mitchell 1998-09-15 10:03:15 +00:00 committed by Mark Mitchell
parent 2d81c9bfe7
commit 11d09c08aa
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Tue Sep 15 09:59:01 1998 Mark Mitchell <mark@markmitchell.com>
* integrate.c (copy_decl_list): Fix typo.
Tue Sep 15 04:18:52 1998 David S. Miller <davem@pierdol.cobaltmicro.com>
* config/sparc/sparc.md (movdf_const_intreg_sp32): Fix length

View File

@ -788,7 +788,7 @@ copy_decl_list (list)
if (list == 0)
return 0;
head = prev = copy_and_set_decl_abstract_origin (head);
head = prev = copy_and_set_decl_abstract_origin (list);
next = TREE_CHAIN (list);
while (next)
{