aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr78748.c
blob: 032e78db7c29e8f80e4d6e1f0706713c8f1e00d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR target/78748 */
/* { dg-options "-march=zEC12" { target { s390*-*-* } } } */

void
foo (int *p, int *q)
{
  *q = *p & ~*q;
}

void
bar (int *p, int *q)
{
  *q = ~*p & *q;
}