1
2typedef float __m128 __attribute__ ((__vector_size__ (16), __may_alias__));
3typedef __SIZE_TYPE__ size_t;
4
5long s1 = 0;
6long s2 = 0;
7long s3 = 0;
8long s4 = 0;
9__m128 r;
10__m128 * volatile raddr = &r;
11
12int main (int argc, const char **argv)
13{
14  return 15 & (int)(size_t)raddr;
15}
16
17void __main (void)
18{
19  asm (".section .drectve\n"
20	"  .ascii \" -aligncomm:_r,4\"\n"
21	"  .ascii \" -aligncomm:r,4\"\n"
22	"  .text");
23}
24
25#if defined (__CYGWIN__) || defined (__MINGW32__)
26void _alloca (void)
27{
28}
29#endif
30