diff options
author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-10-29 13:12:45 +0000 |
---|---|---|
committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-10-29 13:12:45 +0000 |
commit | f7eac43d7b4697fcab0779c397ce5c5e27d92093 (patch) | |
tree | c5f8fdf72661f4b38ac0df96db69c144f05c6a87 /gcc | |
parent | 571e5fe1b51a6c1b693218394fc7f82be06e99a0 (diff) | |
download | gcc-f7eac43d7b4697fcab0779c397ce5c5e27d92093.tar.gz |
/cp
2015-10-29 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/67845
* decl.c (grokfndecl): In case of erroneous cv-qualified non-member
functions consistently reset TREE_TYPE (decl) too.
/testsuite
2015-10-29 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/67845
* g++.dg/other/cv_func4.C: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229523 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/cp/decl.c | 5 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/other/cv_func4.C | 6 |
4 files changed, 22 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index d4c9a4f613d..a85166b757d 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2015-10-29 Paolo Carlini <paolo.carlini@oracle.com> + + PR c++/67845 + * decl.c (grokfndecl): In case of erroneous cv-qualified non-member + functions consistently reset TREE_TYPE (decl) too. + 2015-10-28 Jason Merrill <jason@redhat.com> DR 1518 diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index 2fb923f11bf..c5ceb5a2d6f 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -7998,6 +7998,11 @@ grokfndecl (tree ctype, DECL_EXTERNAL (decl) = 1; if (TREE_CODE (type) == FUNCTION_TYPE) { + if (quals || rqual) + TREE_TYPE (decl) = apply_memfn_quals (TREE_TYPE (decl), + TYPE_UNQUALIFIED, + REF_QUAL_NONE); + if (quals) { error (ctype diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 8c3f4ade88c..77a736fe064 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2015-10-29 Paolo Carlini <paolo.carlini@oracle.com> + + PR c++/67845 + * g++.dg/other/cv_func4.C: New. + 2015-10-29 Richard Biener <rguenther@suse.de> PR middle-end/56956 diff --git a/gcc/testsuite/g++.dg/other/cv_func4.C b/gcc/testsuite/g++.dg/other/cv_func4.C new file mode 100644 index 00000000000..df4f19eb51a --- /dev/null +++ b/gcc/testsuite/g++.dg/other/cv_func4.C @@ -0,0 +1,6 @@ +// PR c++/67845 + +typedef void F () const; + +F foo; // { dg-error "cv-qualifier" } +void foo (); |