diff options
Diffstat (limited to 'gcc/testsuite/consistency.vlad/layout/a-of-s-long.c')
-rwxr-xr-x | gcc/testsuite/consistency.vlad/layout/a-of-s-long.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/testsuite/consistency.vlad/layout/a-of-s-long.c b/gcc/testsuite/consistency.vlad/layout/a-of-s-long.c deleted file mode 100755 index 1e3dc33..0000000 --- a/gcc/testsuite/consistency.vlad/layout/a-of-s-long.c +++ /dev/null @@ -1,12 +0,0 @@ -#include <stdio.h> - -static struct sss{ - long f; -} a[10]; - -int main (void) { - printf ("++++Array of struct with long:\n"); - printf ("size=%d,align=%d,displ-a[5]=%d,align-a[5]=%d\n", - sizeof (a), __alignof__ (a), (char*)&a[5] - (char*)a, __alignof__ (a[5])); - return 0; -} |