aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr104558.c
blob: 382fe5732d7a9b4c81e2bd7956155553ae457b43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* PR middle-end/104558 */
/* { dg-do compile } */
/* { dg-options "-fabi-version=9" } */

struct __attribute__ ((aligned)) A {};

struct A a;

void bar (int, int, int, int, int, int, int, struct A);

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