aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2023-01-23 13:33:07 -0500
committerJason Merrill <jason@redhat.com>2023-01-23 14:09:49 -0500
commit4b125d01a5d5e601961419396332b74eea2219bb (patch)
treebc3c5e4f498cd73dfdada1262cbd180a8708b13f
parentc3c6c307792026705fe0398f5ee399f7668fed1b (diff)
downloadgcc-4b125d01a5d5e601961419396332b74eea2219bb.zip
gcc-4b125d01a5d5e601961419396332b74eea2219bb.tar.gz
gcc-4b125d01a5d5e601961419396332b74eea2219bb.tar.bz2
c++: result location and explicit inst [PR108496]
In r13-4469 we started to build the RESULT_DECL in grokdeclarator, while we still know the location of the return type. But in this testcase, we hit that code again when parsing the explicit instantiation, and clobber the DECL_RESULT that was previously used in parsing the function. So, only set DECL_RESULT if it isn't already set. PR c++/108496 gcc/cp/ChangeLog: * decl.cc (grokdeclarator): Check whether DECL_RESULT is already set. gcc/testsuite/ChangeLog: * g++.dg/template/explicit-instantiation5.C: New test.
-rw-r--r--gcc/cp/decl.cc6
-rw-r--r--gcc/testsuite/g++.dg/template/explicit-instantiation5.C15
2 files changed, 20 insertions, 1 deletions
diff --git a/gcc/cp/decl.cc b/gcc/cp/decl.cc
index 75ddf80..d606b31 100644
--- a/gcc/cp/decl.cc
+++ b/gcc/cp/decl.cc
@@ -14776,7 +14776,9 @@ grokdeclarator (const cp_declarator *declarator,
{
/* If we saw a return type, record its location. */
location_t loc = declspecs->locations[ds_type_spec];
- if (loc != UNKNOWN_LOCATION)
+ if (loc == UNKNOWN_LOCATION)
+ /* Build DECL_RESULT in start_preparsed_function. */;
+ else if (!DECL_RESULT (decl))
{
tree restype = TREE_TYPE (TREE_TYPE (decl));
tree resdecl = build_decl (loc, RESULT_DECL, 0, restype);
@@ -14784,6 +14786,8 @@ grokdeclarator (const cp_declarator *declarator,
DECL_IGNORED_P (resdecl) = 1;
DECL_RESULT (decl) = resdecl;
}
+ else if (funcdef_flag)
+ DECL_SOURCE_LOCATION (DECL_RESULT (decl)) = loc;
}
/* Record constancy and volatility on the DECL itself . There's
diff --git a/gcc/testsuite/g++.dg/template/explicit-instantiation5.C b/gcc/testsuite/g++.dg/template/explicit-instantiation5.C
new file mode 100644
index 0000000..7bc007c
--- /dev/null
+++ b/gcc/testsuite/g++.dg/template/explicit-instantiation5.C
@@ -0,0 +1,15 @@
+// PR c++/108496
+
+struct S { long a, b, c; } s;
+
+template <int, typename>
+S foo (S);
+
+template <>
+S
+foo <0, long> (S)
+{
+ return s;
+}
+
+template S foo <0, long> (S);