Commit 42a89d2d by Jakub Jelinek Committed by Jakub Jelinek

re PR c++/34917 (ICE with const vector)

	PR c++/34917
	* tree.c (build_type_attribute_qual_variant): Call
	build_qualified_type if attributes are equal, but quals are not.

	* g++.dg/ext/vector12.C: New test.

From-SVN: r131726
parent 29b0d1fd
2008-01-22 Jakub Jelinek <jakub@redhat.com>
PR c++/34917
* tree.c (build_type_attribute_qual_variant): Call
build_qualified_type if attributes are equal, but quals are not.
2008-01-22 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
PR 32102
......
2008-01-22 Jakub Jelinek <jakub@redhat.com>
PR c++/34917
* g++.dg/ext/vector12.C: New test.
2008-01-22 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
PR 32102
// PR c++/34917
// { dg-do compile }
const int i __attribute ((vector_size (8))) = {};
......@@ -3735,6 +3735,8 @@ build_type_attribute_qual_variant (tree ttype, tree attribute, int quals)
ttype = build_qualified_type (ntype, quals);
}
else if (TYPE_QUALS (ttype) != quals)
ttype = build_qualified_type (ttype, quals);
return ttype;
}
......
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