1 /* { dg-do compile { target int128 } } */
2 /* { dg-options "-O2 -fno-tree-forwprop --disable-tree-evrp" } */
3 typedef __int128 __attribute__((__vector_size__ (16))) V;
4
5 V
6 foo (V v)
7 {
8 return (v & (V){15}) == v;
9 }