aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/bt-3.c
blob: 1b42ffb042e81d613d1c3a930f20355f95409e8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile { target { ! ia32 } } } */
/* { dg-options "-O2 -mtune=core2" } */

extern void foo (void);

int test (long long x)
{
  if (x & ( 0x01ULL << 60 ))
    foo ();

  return 0;
}

/* { dg-final { scan-assembler "btq\[ \t\]" } } */