Fix alignas test on ARM32

This commit is contained in:
Jeffrey Walton 2020-08-07 11:24:07 -04:00
parent 4d5ee824f5
commit 1d6f04eb8b
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -1,5 +1,5 @@
int main(int argc, char* argv[])
{
alignas(16) unsigned char x[16];
alignas(8) unsigned char x[16];
return 0;
}