/* PR c++/78949 *//* { dg-do compile } *//* { dg-options "-Wunused" } *//* { dg-additional-options "-fno-common" { target hppa*-*-hpux* } } */typedefunsigned char V __attribute__((vector_size(16)));
V v;voidfoo(){
V y = {};
V x = {};// { dg-bogus "set but not used" }
y &= ~x;
v = y;}