summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/cmpxchg16b-1.c
blob: fd266f5a0107abb0635bff8b70931fd31349ce98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-require-effective-target lp64 } */
/* { dg-options "-O2 -mcx16" } */

typedef int TItype __attribute__ ((mode (TI)));

TItype m_128;

void test(TItype x_128)
{
  m_128 = __sync_val_compare_and_swap (&m_128, x_128, m_128);
}

/* { dg-final { scan-assembler "cmpxchg16b" } } */