size to prevent failures on targets with very low maximum alignment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@234976
138bc75d-0d04-0410-961f-
82ee72b054a4
+2016-04-14 Martin Sebor <msebor@redhat.com>
+
+ * g++.dg/cpp1y/vla11.C: Avoid using attribute aligned to increase
+ type size to prevent failures on targets with very low maximum
+ alignment.
+
2016-04-14 Richard Biener <rguenther@suse.de>
PR tree-optimization/70623
// that the checking code can deal with templates (i.e., completes
// the element type of the VLA when necessary).
template <unsigned TypeSize>
-struct alignas (TypeSize) TestType
+union TestType
{
char data;
+ char padding [TypeSize];
};
// Test function invoked with a pointer to each test case. Must