* alias.c (find_base_decl): Delete redundent assignment.

From-SVN: r44710
This commit is contained in:
Graham Stott 2001-08-08 08:03:51 +00:00 committed by Graham Stott
parent 8e0d15d405
commit 6d8c73f7e5
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-08-08 Graham Stott <grahams@redhat.com>
* alias.c (find_base_decl): Delete redundent assignment.
2001-08-08 Graham Stott <grahams@redhat.com>
* dependence.c (INDEX_LIMIT_CHECK): Uppercase macro parameter.

View File

@ -399,7 +399,6 @@ find_base_decl (t)
case '3':
d0 = find_base_decl (TREE_OPERAND (t, 0));
d1 = find_base_decl (TREE_OPERAND (t, 1));
d0 = find_base_decl (TREE_OPERAND (t, 0));
d2 = find_base_decl (TREE_OPERAND (t, 2));
/* Set any nonzero values from the last, then from the first. */