PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / bt-1.c
blob3727155d68f1389f1cb33071323d1bdfd8d8f73b
1 /* PR target/36473 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -mtune=core2" } */
5 extern void foo (void);
7 int test(int x, int n)
9 if (x & ( 0x01 << n ))
10 foo ();
12 return 0;
15 /* { dg-final { scan-assembler "btl\[ \t\]" } } */