PR target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / bt-mask-2.c
blobbabfc2bcd364bd819643469085bbfa32e19dca10
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -mtune=core2" } */
4 void foo (void);
6 int test (long x, long n)
8 n &= 0x3f;
10 if (x & ((long)0x01 << n))
11 foo ();
13 return 0;
16 /* { dg-final { scan-assembler-not "and\[lq\]\[ \t\]" } } */