summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/atomic_ops.c
blob: 910e9b9505063a0a48f61f8dde4dfc7b439991d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s

void foo(int x)
{
  _Atomic(int) i = 0;
  _Atomic(short) j = 0;
  // Check that multiply / divides on atomics produce a cmpxchg loop
  i *= 2;
  // CHECK: mul nsw i32
  // CHECK: cmpxchg i32*
  i /= 2;
  // CHECK: sdiv i32
  // CHECK: cmpxchg i32*
  j /= x;
  // CHECK: sdiv i32
  // CHECK: cmpxchg i16*

}
OpenPOWER on IntegriCloud