* ld-pe/aligncomm-1.c (_alloca): Add dummy definition to
[deliverable/binutils-gdb.git] / ld / testsuite / ld-pe / aligncomm-1.c
1
2 typedef float __m128 __attribute__ ((__vector_size__ (16), __may_alias__));
3
4 long s1 = 0;
5 __m128 r;
6 __m128 * volatile raddr = &r;
7
8 int main (int argc, const char **argv)
9 {
10 return 15 & (int)raddr;
11 }
12
13 void __main (void)
14 {
15 asm (".section .drectve\n"
16 " .ascii \" -aligncomm:_r,4\"\n"
17 " .ascii \" -aligncomm:r,4\"\n"
18 " .text");
19 }
20
21 #if defined (__CYGWIN__) || defined (__MINGW32__)
22 void _alloca (void)
23 {
24 }
25 #endif
This page took 0.038934 seconds and 5 git commands to generate.