diff options
author | grahams <grahams@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-08 08:03:51 +0000 |
---|---|---|
committer | grahams <grahams@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-08 08:03:51 +0000 |
commit | c45079c9dad5ef965ad42fc79b1d070835ea32bf (patch) | |
tree | 1cb1ae72d8279045735cdb5440bfa80e39d950d0 /gcc/alias.c | |
parent | 39ea460e41ec1769e66b416007cf66b0b55dcb3a (diff) | |
download | gcc-c45079c9dad5ef965ad42fc79b1d070835ea32bf.tar.gz |
* alias.c (find_base_decl): Delete redundent assignment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44710 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/alias.c')
-rw-r--r-- | gcc/alias.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/alias.c b/gcc/alias.c index eb4cb42dbf7..a1204a2eac9 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. */ |