From: Martin v. Löwis Date: Sun, 24 Jan 1999 15:38:44 +0000 (+0000) Subject: decl.c (decls_match): Return 1 if old and new are identical. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=347d73d7082681958142dcb57e60f2f45e7f8777;p=gcc.git decl.c (decls_match): Return 1 if old and new are identical. 1999-01-25 Martin von Loewis * decl.c (decls_match): Return 1 if old and new are identical. (push_overloaded_decl): Set OVL_USED when PUSH_USING. From-SVN: r24849 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index ab362173528..4a0a402009d 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +1999-01-25 Martin von Loewis + + * decl.c (decls_match): Return 1 if old and new are identical. + (push_overloaded_decl): Set OVL_USED when PUSH_USING. + 1999-01-24 Jason Merrill * decl.c (start_function): Make member functions one_only on windows. diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index e1e50f6f46e..d62263211b9 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -2696,6 +2696,9 @@ decls_match (newdecl, olddecl) { int types_match; + if (newdecl == olddecl) + return 1; + if (TREE_CODE (newdecl) != TREE_CODE (olddecl)) /* If the two DECLs are not even the same kind of thing, we're not interested in their types. */ @@ -4239,6 +4242,8 @@ push_overloaded_decl (decl, flags) new_binding = ovl_cons (decl, ovl_cons (old, NULL_TREE)); else new_binding = ovl_cons (decl, old); + if (flags & PUSH_USING) + OVL_USED (new_binding) = 1; } else /* NAME is not ambiguous. */