]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ld/testsuite/ld-pe/aligncomm-2.c
==> bfd/ChangeLog <==
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-pe / aligncomm-2.c
1
2 typedef float __m128 __attribute__ ((__vector_size__ (16), __may_alias__));
3
4 long s1 = 0;
5 long s2 = 0;
6 __m128 r;
7 __m128 * volatile raddr = &r;
8
9 int main (int argc, const char **argv)
10 {
11 return 15 & (int)raddr;
12 }
13
14 void __main (void)
15 {
16 asm (".section .drectve\n"
17 " .ascii \" -aligncomm:_r,4\"\n"
18 " .ascii \" -aligncomm:r,4\"\n"
19 " .text");
20 }