comparison gcc/testsuite/g++.dg/abi/pr60336-3.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 // { dg-do compile }
2 // { dg-options "-O2 -Wabi=11" }
3
4 struct dummy { struct { } __attribute__((aligned (4))) a[7]; };
5
6 extern void test1 (struct dummy, ...);
7 extern void (*test2) (struct dummy, ...);
8
9 void
10 foo ()
11 {
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 } } } } }
15 }