diff options
author | Jeffrey Yasskin <jyasskin@google.com> | 2011-07-27 18:38:48 +0000 |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@gcc.gnu.org> | 2011-07-27 18:38:48 +0000 |
commit | ce77c22f1bf5674d60710fba3cf8c43d502db01b (patch) | |
tree | 0046d7d004c0b89fc7974e8ca5f38cc5ebe79a08 /gcc/cp/ChangeLog | |
parent | f22cfb2e4ef3c8749a4814ebd5d0b39173b05b18 (diff) | |
download | gcc-ce77c22f1bf5674d60710fba3cf8c43d502db01b.zip gcc-ce77c22f1bf5674d60710fba3cf8c43d502db01b.tar.gz gcc-ce77c22f1bf5674d60710fba3cf8c43d502db01b.tar.bz2 |
Propagate the source location of a template's function_decl to the template_decl built out of it.
Propagate the source location of a template's function_decl to the
template_decl built out of it. Without this, specializations
generated before the template was defined get the location of the
closing ')' instead of the location of the template's name, which can
produce inconsistent locations between translation units, which makes
gold's ODR checker unhappy.
* gcc/cp/pt.c (build_template_decl): Copy the function_decl's source
location to the new template_decl.
* gcc/testsuite/g++.old-deja/g++.pt/crash60.C: Updated.
* libstdc++-v3/testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Updated.
From-SVN: r176845
Diffstat (limited to 'gcc/cp/ChangeLog')
-rw-r--r-- | gcc/cp/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index d169ed1..653a0ab 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2011-07-27 Jeffrey Yasskin <jyasskin@google.com> + + * pt.c (build_template_decl): Copy the function_decl's + source location to the new template_decl. + 2011-07-26 Paolo Carlini <paolo.carlini@oracle.com> PR c++/49776 |