blob: 9effb1eef03950ea7abbed42f415fc70fff7c19b [file] [log] [blame]
/* PR middle-end/83487 */
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);
}