Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / 20050409-1.c
blobbe85f71a6b78cdcd957adf8d8d9bf17773f550c3
1 /* This used to ICE due to a regmove problem on s390. */
3 /* { dg-do compile { target s390*-*-* } } */
4 /* { dg-options "-O2" } */
7 extern void abort (void);
8 extern void **alloc (void);
10 void *test (void)
12 void **p = alloc ();
13 if (!p) abort ();
15 __builtin_set_thread_pointer (p);
16 return *p;