1 /* This testcase checks that s390_extzv_shift_ok does not cause an assertion
2    failure.  */
3 
4 /* { dg-do compile } */
5 /* { dg-options "-w -march=z196 -mtune=zEC12 -m64 -mzarch -O2" } */
6 
7 int
foo(int a)8 foo (int a)
9 {
10   return sizeof (int) * a + 16 - a * sizeof (int) % 16;
11 }
12