1 /* PR target/78748 */
2 /* { dg-options "-march=zEC12" { target { s390*-*-* } } } */
3 
4 void
foo(int * p,int * q)5 foo (int *p, int *q)
6 {
7   *q = *p & ~*q;
8 }
9 
10 void
bar(int * p,int * q)11 bar (int *p, int *q)
12 {
13   *q = ~*p & *q;
14 }
15