This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: C++ Patch Ping
- From: Nathan Sidwell <nathan at acm dot org>
- To: Jakub Jelinek <jakub at redhat dot com>, Jason Merrill <jason at redhat dot com>
- Cc: gcc-patches at gcc dot gnu dot org
- Date: Thu, 15 Dec 2016 07:14:15 -0500
- Subject: Re: C++ Patch Ping
- Authentication-results: sourceware.org; auth=none
- References: <20161215083414.GB21933@tucnak>
On 12/15/2016 03:34 AM, Jakub Jelinek wrote:
Hi!
I'd like to ping the
http://gcc.gnu.org/ml/gcc-patches/2016-12/msg00698.html
P0490R0 GB 20: decomposition declaration should commit to tuple interpretation early
+ if (inst == error_mark_node)
+ return NULL_TREE;
This check is unneeded, because complete_type DTRT with error_mark_node
+ inst = complete_type (inst);
+ if (!COMPLETE_TYPE_P (inst))
+ return NULL_TREE;
--
Nathan Sidwell