annotate gcc/testsuite/gcc.dg/pr70219.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* PR middle-end/70219 */
kono
parents:
diff changeset
2 /* { dg-do compile { target int128 } } */
kono
parents:
diff changeset
3 /* { dg-options "-O1 -w -Wno-psabi" } */
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 typedef int B __attribute__ ((vector_size (32)));
kono
parents:
diff changeset
6 typedef int D __attribute__ ((vector_size (32)));
kono
parents:
diff changeset
7 typedef long E __attribute__ ((vector_size (32)));
kono
parents:
diff changeset
8 typedef __int128 F;
kono
parents:
diff changeset
9 typedef __int128 G __attribute__ ((vector_size (32)));
kono
parents:
diff changeset
10
kono
parents:
diff changeset
11 F
kono
parents:
diff changeset
12 foo (int a, unsigned b, F c, B d, G e, B f, D g, E h, G i)
kono
parents:
diff changeset
13 {
kono
parents:
diff changeset
14 b /= c;
kono
parents:
diff changeset
15 e /= (G) ~d;
kono
parents:
diff changeset
16 h -= (E){ g[4], e[1], 64, ~f[1] };
kono
parents:
diff changeset
17 return b + e[1] + h[0] + h[1] + i[1];
kono
parents:
diff changeset
18 }