[COMMITTED] Fix pthread errors in pr86637-2.c
[gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr70633.c
1 /* PR middle-end/70633 */
2
3 typedef long V __attribute__((vector_size (4 * sizeof (long))));
4
5 void foo (V *);
6
7 void
8 bar (void)
9 {
10 V b = { (long) bar, 0, 0, 0 };
11 foo (&b);
12 }