https://gcc.gnu.org/bugzilla/show_bug.cgi?id=122629
--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Another testcase:
```
typedef int ix4 __attribute__((vector_size(4*sizeof(int))));
int g(ix4 *a, int l, int *b)
{
for (int i =0 ;i < l; i++)
{
ix4 tt = a[i];
if(*b) tt[1] = 1; else tt[0] = 1;
*a = tt;
}
}
```
With BIT_INSERT_EXPR rather than BIT_FIELD_REF.
