repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
abi
/
param2.C
blob
ed3c0dff1329ae0966e535b21684de8e3db98f1a
1
// PR target/20795
2
// Test passing aligned empty aggregate
3
// { dg-do compile }
4
5
struct S { union {} a; } __attribute__((aligned));
6
7
S
8
foo (S arg)
9
{
10
return arg;
11
}
12
13
void
14
bar (void)
15
{
16
S arg;
17
foo (arg);
18
}