aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/pr95237-8.c
blob: 8ba98abafc92a447f8661c73af44add9217f1522 (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()
{
  	extern long long x;
	if (__alignof__(x) != 8)
	  __builtin_abort();
	return 0;
}