blob: 6cc12b348339d6e6d837c792c6979deac7a57169 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-final { scan-assembler-not "andl" } } */
unsigned int foo(unsigned int x)
{
unsigned int t = x & ~1;
return t | 1;
}