From: Graham Stott Date: Wed, 8 Aug 2001 08:03:51 +0000 (+0000) Subject: * alias.c (find_base_decl): Delete redundent assignment. X-Git-Tag: prereleases/libstdc++-3.0.95~2805 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6d8c73f7e5f271272681e3edd588b51b9cc66ef3;p=thirdparty%2Fgcc.git * alias.c (find_base_decl): Delete redundent assignment. From-SVN: r44710 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7aa747fa5b88..4659e5b6d79f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-08-08 Graham Stott + + * alias.c (find_base_decl): Delete redundent assignment. + 2001-08-08 Graham Stott * dependence.c (INDEX_LIMIT_CHECK): Uppercase macro parameter. diff --git a/gcc/alias.c b/gcc/alias.c index eb4cb42dbf75..a1204a2eac9f 100644 --- a/gcc/alias.c +++ b/gcc/alias.c @@ -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. */