blob: babfc2bcd364bd819643469085bbfa32e19dca10 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -mtune=core2" } */
void foo (void);
int test (long x, long n)
{
n &= 0x3f;
if (x & ((long)0x01 << n))
foo ();
return 0;
}
/* { dg-final { scan-assembler-not "and\[lq\]\[ \t\]" } } */