comparison gcc/testsuite/gcc.c-torture/compile/pr90139.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 /* PR middle-end/90139 */
2
3 typedef float __attribute__((vector_size (sizeof (float)))) V;
4 void bar (int, V *);
5 int l;
6
7 void
8 foo (void)
9 {
10 V n, b, o;
11 while (1)
12 switch (l)
13 {
14 case 0:
15 o = n;
16 n = b;
17 b = o;
18 bar (1, &o);
19 }
20 }