Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / consistency.vlad / layout / a-longlong.c
blobe3bcb9a6232447a0376f5bfa7a4d3512076eb317
1 #include <stdio.h>
3 static long long a [10];
4 static long long e [0]; /* GCC only */
6 int main (void) {
7 printf ("+++Array longlong:\n");
8 printf ("size=%d,align=%d,5th-elem-offset=%d,5th-elem-align=%d\n",
9 sizeof (a), __alignof__ (a),
10 (char *) &a[5] - (char *) a, __alignof__ (a[5]));
11 printf ("size=%d,align=%d,5th-elem-offset=%d,5th-elem-align=%d\n",
12 sizeof (e), __alignof__ (e),
13 (char *) &e[5] - (char *) a, __alignof__ (e[5]));
14 return 0;