No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / abi / param2.C
blobed3c0dff1329ae0966e535b21684de8e3db98f1a
1 // PR target/20795
2 // Test passing aligned empty aggregate
3 // { dg-do compile }
5 struct S { union {} a; } __attribute__((aligned));
8 foo (S arg)
10   return arg;
13 void
14 bar (void)
16   S arg;
17   foo (arg);