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