* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr78748.c
blob032e78db7c29e8f80e4d6e1f0706713c8f1e00d2
1 /* PR target/78748 */
2 /* { dg-options "-march=zEC12" { target { s390*-*-* } } } */
4 void
5 foo (int *p, int *q)
7 *q = *p & ~*q;
10 void
11 bar (int *p, int *q)
13 *q = ~*p & *q;