1 /* PR target/82281 */
2 /* { dg-do compile { target ia32 } } */
3 /* { dg-options "-O2 -msse2 -mtune=znver1" } */
4 
test_and(long long x)5 long long test_and(long long x) {
6 	return x & 0x77ffffffffULL;
7 }
8 
9 /* { dg-final { scan-assembler-not "xmm" } } */
10