1 /* { dg-do compile { target { powerpc*-*-linux* && lp64 } } } */
2 /* { dg-options "-mno-compat-align-parm" } */
3 
4 struct test
5   {
6     long a __attribute__((aligned (16)));
7   };
8 
test(struct test a)9 void test (struct test a) /* { dg-message "note: the ABI of passing aggregates with 16-byte alignment will change" } */
10 {
11 }
12 
13