annotate gcc/testsuite/gcc.dg/compat/struct-align-2_main.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Test compatibility of structure layout and alignment for a struct
kono
parents:
diff changeset
2 containing an int and a long long, with various combinations of
kono
parents:
diff changeset
3 packed and aligned attributes. The struct is from the Linux kernel. */
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 extern void struct_align_2_x (void);
kono
parents:
diff changeset
6 extern void exit (int);
kono
parents:
diff changeset
7 int fails;
kono
parents:
diff changeset
8
kono
parents:
diff changeset
9 int
kono
parents:
diff changeset
10 main ()
kono
parents:
diff changeset
11 {
kono
parents:
diff changeset
12 struct_align_2_x ();
kono
parents:
diff changeset
13 exit (0);
kono
parents:
diff changeset
14 }