aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/repo.c
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>2001-06-06 03:15:33 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>2001-06-06 03:15:33 +0000
commit7e9abee9133874562567b859de517c242bb21c6a (patch)
treef99ffcef61eba4bd28518b2193f2fe8f16f1a224 /gcc/cp/repo.c
parent7b2b3f29e59c06c3c75c62f5e9148b186d8fca07 (diff)
downloadgcc-7e9abee9133874562567b859de517c242bb21c6a.zip
gcc-7e9abee9133874562567b859de517c242bb21c6a.tar.gz
gcc-7e9abee9133874562567b859de517c242bb21c6a.tar.bz2
pt.c (instantiate_decl): Tell the repository code about the clones, not the cloned functions.
* pt.c (instantiate_decl): Tell the repository code about the clones, not the cloned functions. * repo.c (repo_template_used): Explicitly instantiate the cloned function, not the clones. From-SVN: r42931
Diffstat (limited to 'gcc/cp/repo.c')
-rw-r--r--gcc/cp/repo.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/gcc/cp/repo.c b/gcc/cp/repo.c
index 6dfcafc..f2f9591 100644
--- a/gcc/cp/repo.c
+++ b/gcc/cp/repo.c
@@ -137,7 +137,13 @@ repo_template_used (t)
else if (DECL_P (t))
{
if (IDENTIFIER_REPO_CHOSEN (id))
- mark_decl_instantiated (t, 0);
+ /* It doesn't make sense to instantiate a clone, so we
+ instantiate the cloned function instead. Note that this
+ approach will not work correctly if collect2 assigns
+ different clones to different files -- but it shouldn't. */
+ mark_decl_instantiated (DECL_CLONED_FUNCTION_P (t)
+ ? DECL_CLONED_FUNCTION (t) : t,
+ 0);
}
else
my_friendly_abort (1);