blob: b1216c2b37d709c68d97fdebb6b4f8be3030e0e3 [file] [log] [blame]
// PR c++/34891
typedef float v4f __attribute__((vector_size(8)));
typedef int v4i __attribute__((vector_size(8)));
void foo()
{
v4f v;
!(v4i)v;
!v;
}