/* { dg-require-effective-target vect_int } */ #include #include "../../tree-vect.h" #define N 32 struct s{ short a; /* aligned */ char b[N-1]; /* unaligned (offset 2B) */ }; int main1 () { int i; struct s tmp; /* unaligned */ for (i = 0; i < N/4; i++) { tmp.b[2*i] = 5; tmp.b[2*i+1] = 15; } /* check results: */ for (i = 0; i