blob: 8691cf1d68a05ffcd0e4e537f6d8b3b7695a2997 [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; // { dg-error "int __vector__|argument" }
}