tcc-65816/test/tests/align-1.c
2017-06-09 13:52:12 +02:00

10 lines
154 B
C

typedef int new_int __attribute__ ((aligned(16)));
struct S { int x; };
int main()
{
if (sizeof(struct S) != sizeof(int))
abort ();
return 0;
}