(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.target/
i386/
pr102566-1.C
/* { dg-do compile { target c++11 } } */
/* { dg-options "-O2" } */

#include <atomic>

bool
tbit0 (std::atomic<int> &i)
{
#define BIT (1 << 0)
  return i.fetch_or(BIT, std::memory_order_relaxed) & BIT;
#undef BIT 
}

bool
tbit30 (std::atomic<int> &i)
{
#define BIT (1 << 30)
  return i.fetch_or(BIT, std::memory_order_relaxed) & BIT;
#undef BIT 
}

bool
tbit31 (std::atomic<int> &i)
{
#define BIT (1 << 31)
  return i.fetch_or(BIT, std::memory_order_relaxed) & BIT;
#undef BIT 
}

/* { dg-final { scan-assembler-times "lock;?\[ \t\]*btsl" 3 } } */
/* { dg-final { scan-assembler-not "cmpxchg" } } */