modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr78748.c (about)

     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  }