Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr23467.c
blob: 97a5af7780f0863ec777a8e20225f3a0043029d0 [
file
] [
log
] [
blame
]
/* { dg-skip-if "small alignment" { pdp11-*-* } } */
struct
s1
{
int
__attribute__
((
aligned
(
8
)))
a
;
};
struct
{
char
c
;
struct
s1 m
;
}
v
;
int
main
(
void
)
{
if
((
int
)&
v
.
m
&
7
)
abort
();
exit
(
0
);
}