aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/abi/pr83487.C
blob: b1ef1bfb260ea031a4060f4037e92cfb36ac80df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR middle-end/83487 */
/* { dg-do compile } */
/* { dg-options "" } */

struct __attribute__ ((__aligned__)) A {};
struct A a;
void bar (int, int, int, int, int, int, int, struct A);

void
foo ()
{
  bar (0, 1, 2, 3, 4, 5, 6, a);
}