Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
align-1.c
blob: 75b3cf1c2e61bfc35796dbad82ac7a80a2919dd5 [
file
] [
log
] [
blame
]
void
abort
(
void
);
typedef
int
new_int __attribute__
((
aligned
(
16
)));
struct
S
{
int
x
;
};
int
main
()
{
if
(
sizeof
(
struct
S
)
!=
sizeof
(
int
))
abort
();
return
0
;
}