re PR debug/66653 (ice in gen_type_die_with_usage, at dwarf2out.c:20876)

PR debug/66653
	* decl2.c (is_late_template_attribute): True for tls_model.

From-SVN: r225193
This commit is contained in:
Jason Merrill 2015-06-30 11:40:38 -04:00 committed by Jason Merrill
parent 3048c0c746
commit 47297e51f5
3 changed files with 15 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2015-06-30 Jason Merrill <jason@redhat.com>
PR debug/66653
* decl2.c (is_late_template_attribute): True for tls_model.
PR debug/66653
* cp-tree.h (CP_DECL_THREAD_LOCAL_P): New.
(DECL_GNU_TLS_P): Use DECL_LANG_SPECIFIC field.

View File

@ -1164,6 +1164,10 @@ is_late_template_attribute (tree attr, tree decl)
if (is_attribute_p ("unused", name))
return false;
/* Attribute tls_model wants to modify the symtab. */
if (is_attribute_p ("tls_model", name))
return true;
/* #pragma omp declare simd attribute needs to be always deferred. */
if (flag_openmp
&& is_attribute_p ("omp declare simd", name))

View File

@ -0,0 +1,8 @@
// { dg-require-effective-target tls }
// { dg-options "-g" }
template <class T>
void f()
{
static __thread int i __attribute ((tls_model ("local-exec")));
}