1 /* PR target/80019 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -mxop -mavx2" } */
4 
5 typedef char v16qi __attribute__ ((vector_size (16)));
6 
7 extern v16qi b, c;
8 
9 void
foo(int e)10 foo (int e)
11 {
12   b = c << e;
13 }
14