Commit eb9c434c by Jakub Jelinek Committed by Jakub Jelinek

re PR c++/36852 (Two dimensional array in template method argument list incorrectly interpreted.)

	PR c++/36852
	* tree.c (cplus_array_hash, build_cplus_array_type_1): Hash on
	TYPE_UID instead of pointers.

	* g++.dg/pch/array-1.C: New test.
	* g++.dg/pch/array-1.Hs: New file.

From-SVN: r138250
parent 11cc4546
2008-07-29 Jakub Jelinek <jakub@redhat.com>
PR c++/36852
* tree.c (cplus_array_hash, build_cplus_array_type_1): Hash on
TYPE_UID instead of pointers.
2008-07-29 Jan Hubicka <jh@suse.cz> 2008-07-29 Jan Hubicka <jh@suse.cz>
* optimize.c (maybe_clone_body): Remove DECL_INLINE. * optimize.c (maybe_clone_body): Remove DECL_INLINE.
......
...@@ -504,9 +504,9 @@ cplus_array_hash (const void* k) ...@@ -504,9 +504,9 @@ cplus_array_hash (const void* k)
hashval_t hash; hashval_t hash;
const_tree const t = (const_tree) k; const_tree const t = (const_tree) k;
hash = (htab_hash_pointer (TREE_TYPE (t)) hash = TYPE_UID (TREE_TYPE (t));
^ htab_hash_pointer (TYPE_DOMAIN (t))); if (TYPE_DOMAIN (t))
hash ^= TYPE_UID (TYPE_DOMAIN (t));
return hash; return hash;
} }
...@@ -553,8 +553,9 @@ build_cplus_array_type_1 (tree elt_type, tree index_type) ...@@ -553,8 +553,9 @@ build_cplus_array_type_1 (tree elt_type, tree index_type)
cplus_array_htab = htab_create_ggc (61, &cplus_array_hash, cplus_array_htab = htab_create_ggc (61, &cplus_array_hash,
&cplus_array_compare, NULL); &cplus_array_compare, NULL);
hash = (htab_hash_pointer (elt_type) hash = TYPE_UID (elt_type);
^ htab_hash_pointer (index_type)); if (index_type)
hash ^= TYPE_UID (index_type);
cai.type = elt_type; cai.type = elt_type;
cai.domain = index_type; cai.domain = index_type;
......
2008-07-29 Jakub Jelinek <jakub@redhat.com>
PR c++/36852
* g++.dg/pch/array-1.C: New test.
* g++.dg/pch/array-1.Hs: New file.
2008-07-29 Jan Hubicka <jh@suse.cz> 2008-07-29 Jan Hubicka <jh@suse.cz>
* gcc.dg/20040206-1.c: Expect frontend warning now. * gcc.dg/20040206-1.c: Expect frontend warning now.
......
// PR c++/36852
#include "array-1.H"
template <class T>
T
A::foo (T t[3][3])
{
return t[0][1];
}
int
main ()
{
}
struct A
{
template <class T> static T foo (T[3][3]);
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment