diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/alias.c | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7aa747f..4659e5b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 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. (abs): Uppercase and paranthesize macro parameter. (MEM_DEPENDENCY): Add whitespace. diff --git a/gcc/alias.c b/gcc/alias.c index eb4cb42..a1204a2 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. */ |