aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/align-1.c
blob: 2dc1aad2abc0ee6ed814c703e973a5ba25205861 (plain)
1
2
3
4
5
6
7
8
9
typedef int new_int __attribute__ ((aligned(16)));
struct S { int x; };
 
int main()
{
  if (sizeof(struct S) != sizeof(int))
    abort ();
  return 0;
}