]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/testsuite/ld-pe/aligncomm-3.c
* elfxx-tilegx.c (tilegx_elf_relocate_section): Silence bogus warning.
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-pe / aligncomm-3.c
CommitLineData
c1711530
DK
1
2typedef float __m128 __attribute__ ((__vector_size__ (16), __may_alias__));
204eb8bc 3typedef __SIZE_TYPE__ size_t;
c1711530
DK
4
5long s1 = 0;
6long s2 = 0;
7long s3 = 0;
8__m128 r;
9__m128 * volatile raddr = &r;
10
11int main (int argc, const char **argv)
12{
204eb8bc 13 return 15 & (int)(size_t)raddr;
c1711530
DK
14}
15
16void __main (void)
17{
18 asm (".section .drectve\n"
19 " .ascii \" -aligncomm:_r,4\"\n"
20 " .ascii \" -aligncomm:r,4\"\n"
21 " .text");
22}
c344f845
DK
23
24#if defined (__CYGWIN__) || defined (__MINGW32__)
25void _alloca (void)
26{
27}
28#endif