aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/repo.c
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>2006-01-04 01:04:51 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>2006-01-04 01:04:51 +0000
commit862e1e62fcf86a05434abd3b83a7ad89c39c6f44 (patch)
tree777031142703d177a212c16367bd180fc4f36a18 /gcc/cp/repo.c
parent8f9f2d0f2b81add413c0ab207392d75c5788931e (diff)
downloadgcc-862e1e62fcf86a05434abd3b83a7ad89c39c6f44.zip
gcc-862e1e62fcf86a05434abd3b83a7ad89c39c6f44.tar.gz
gcc-862e1e62fcf86a05434abd3b83a7ad89c39c6f44.tar.bz2
re PR c++/25492 (friend class nested in derived class problem)
PR c++/25492 * name-lookup.c (push_class_level_binding): When a derived class provides a type binding, eliminate any type binding from a base class. PR c++/25625 * repo.c (repo_emit_p): Always instantiate static data members initialized by constant expressions, so that there values are available. PR c++/25492 * g++.dg/lookup/friend9.C: New test. PR c++/25625 * g++.dg/template/repo5.C: New test. From-SVN: r109307
Diffstat (limited to 'gcc/cp/repo.c')
-rw-r--r--gcc/cp/repo.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/cp/repo.c b/gcc/cp/repo.c
index d2fae3e..ad01010 100644
--- a/gcc/cp/repo.c
+++ b/gcc/cp/repo.c
@@ -298,6 +298,12 @@ repo_emit_p (tree decl)
&& (!TYPE_LANG_SPECIFIC (type)
|| !CLASSTYPE_TEMPLATE_INSTANTIATION (type)))
return 2;
+ /* Static data members initialized by constant expressions must
+ be processed where needed so that their definitions are
+ available. */
+ if (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl)
+ && DECL_CLASS_SCOPE_P (decl))
+ return 2;
}
else if (!DECL_TEMPLATE_INSTANTIATION (decl))
return 2;