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
/
ext
/
attrib21.C
blob
2fc5800b05e187d05fc0dac556677a701b1536e4
1
// PR c++/20763
2
3
typedef void *voidp;
4
5
struct S
6
{
7
char a;
8
voidp __attribute__ ((aligned (16))) b;
9
};
10
11
struct T
12
{
13
char a;
14
void *__attribute__ ((aligned (16))) b;
15
};
16
17
int f[sizeof (struct S) != sizeof (struct T) ? -1 : 1];