1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3
f2(long x)4 long long f2 (long x)
5 {
6 x &= 0x0ffffffffffffff8LL;
7
8 x &= 0xff001fffLL;
9
10 return x;
11 }
12
13 /* { dg-final { scan-assembler-times "and\t" 2 } } */
14 /* { dg-final { scan-assembler-not "movk\t" } } */
15