Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
gen
/
c
/
testdata
/
aligned_attr_gcc_windows.c.must_have
13
lines
·
10
sloc
·
196 bytes
·
d198a8989742c5a94153b4670f64a1b94d827d22
Raw
1
2
struct main__Test {
3
int a;
4
} __attribute__((aligned (8)));
5
6
struct main__Test2 {
7
int a;
8
int b;
9
} __attribute__((aligned (16)));
10
11
union main__Test3 {
12
int a;
13
} __attribute__((aligned (8)));
14