PR c++/60336
[official-gcc.git] / gcc / testsuite / g++.dg / abi / pr60336-3.C
blob4157e553b6b02c8436be0797d37ead637f5ad0e2
1 // { dg-do compile }
2 // { dg-options "-O2 -Wabi=11" }
4 struct dummy { struct { } __attribute__((aligned (4))) a[7]; };
6 extern void test1 (struct dummy, ...);
7 extern void (*test2) (struct dummy, ...);
9 void
10 foo ()
12   struct dummy a0;
13   test1 (a0, 42); // { dg-warning "ABI" "" { target { { i?86-*-* x86_64-*-* } && { ! { ia32 } } } } }
14   test2 (a0, 42); // { dg-warning "ABI" "" { target { { i?86-*-* x86_64-*-* } && { ! { ia32 } } } } }