blob: 032e78db7c29e8f80e4d6e1f0706713c8f1e00d2 [file] [log] [blame]
/* 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;
}