ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gcc.target/powerpc/pr58330.c

12 lines
355 B
C
Raw Permalink Normal View History

2024-04-01 15:19:46 +00:00
/* { dg-do compile { target { powerpc*-*-* } } } */
/* { dg-require-effective-target lp64 } */
/* { dg-options "-O -mno-popcntb" } */
/* { dg-final { scan-assembler-not "stwbrx" } } */
void
write_reverse (unsigned long *addr, unsigned long val)
{
unsigned long reverse = __builtin_bswap64 (val);
__atomic_store_n (addr, reverse, __ATOMIC_RELAXED);
}