2018-05-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / pr78575.c
blob6b27f10706aa1b88e8b700d49411cc9756195b76
1 /* PR rtl-optimization/78575 */
2 /* { dg-do compile { target int128 } } */
3 /* { dg-options "-O2 -g -Wno-psabi" } */
5 typedef unsigned __int128 V __attribute__((vector_size(64)));
7 V g;
9 void
10 foo (V v)
12 unsigned __int128 x = 1;
13 int c = v[1] <= ~x;
14 v &= v[1];
15 g = v;