aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Stott <grahams@redhat.com>2001-08-08 08:03:51 +0000
committerGraham Stott <grahams@gcc.gnu.org>2001-08-08 08:03:51 +0000
commit6d8c73f7e5f271272681e3edd588b51b9cc66ef3 (patch)
tree1cb1ae72d8279045735cdb5440bfa80e39d950d0
parent8e0d15d405cd4b4496ff5bbc8a025d09f1bcb811 (diff)
downloadgcc-6d8c73f7e5f271272681e3edd588b51b9cc66ef3.zip
gcc-6d8c73f7e5f271272681e3edd588b51b9cc66ef3.tar.gz
gcc-6d8c73f7e5f271272681e3edd588b51b9cc66ef3.tar.bz2
* alias.c (find_base_decl): Delete redundent assignment.
From-SVN: r44710
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/alias.c1
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. */