PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / andor-1.c
blob6cc12b348339d6e6d837c792c6979deac7a57169
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 /* { dg-final { scan-assembler-not "andl" } } */
5 unsigned int foo(unsigned int x)
7 unsigned int t = x & ~1;
8 return t | 1;