* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / vector-align-1.c
blobdc97ba6ca24166885a7f806f01a317e4af9abac8
1 /* Check to make sure the alignment on vectors is not being lost. */
3 /* If some target has a Max alignment less than 128, please create
4 a #ifdef around the alignment and add your alignment. */
5 #define alignment 128
7 char x __attribute__((aligned(alignment),vector_size(2)));
10 int f[__alignof__(x) == alignment?1:-1];