re PR c++/65646 (ICE in invalid syntax)

PR c++/65646
	* pt.c (check_explicit_specialization): Don't
	SET_DECL_TEMPLATE_SPECIALIZATION for a variable with no template
	headers.
	* decl.c (grokvardecl): Revert earlier fix.

From-SVN: r222376
This commit is contained in:
Jason Merrill 2015-04-23 11:55:11 -04:00 committed by Jason Merrill
parent 2667715244
commit 6c28362134
3 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,11 @@
2015-04-23 Jason Merrill <jason@redhat.com>
PR c++/65646
* pt.c (check_explicit_specialization): Don't
SET_DECL_TEMPLATE_SPECIALIZATION for a variable with no template
headers.
* decl.c (grokvardecl): Revert earlier fix.
2015-04-20 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/65801

View File

@ -8210,9 +8210,7 @@ grokvardecl (tree type,
DECL_INTERFACE_KNOWN (decl) = 1;
// Handle explicit specializations and instantiations of variable templates.
if (orig_declarator
/* For GCC 5 fix 65646 this way. */
&& current_tmpl_spec_kind (template_count) != tsk_none)
if (orig_declarator)
decl = check_explicit_specialization (orig_declarator, decl,
template_count, 0);

View File

@ -2424,7 +2424,7 @@ check_explicit_specialization (tree declarator,
switch (tsk)
{
case tsk_none:
if (processing_specialization)
if (processing_specialization && TREE_CODE (decl) != VAR_DECL)
{
specialization = 1;
SET_DECL_TEMPLATE_SPECIALIZATION (decl);