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