1  /* { dg-do compile } */
       2  /* { dg-options "-Os -mtune=core2" } */
       3  
       4  extern void foo (void);
       5  
       6  int test (long x)
       7  {
       8    if (x & ( 0x01UL << 10 ))
       9      foo ();
      10  
      11    return 0;
      12  }
      13  
      14  /* { dg-final { scan-assembler "btl\[ \t\]" } } */