aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/pr95237-9.c
blob: 687517cbc0a4f4a9c65136a0deacc0a6a4c6ea2b (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do run } */
/* { dg-require-effective-target ia32 } */
/* { dg-options "-mpreferred-stack-boundary=2" { target { i?86-*-* x86_64-*-* } } } */
int main()
{
	static long long x;
	if (__alignof__(x) != 8)
	  __builtin_abort();
	return 0;
}