Eli Friedman 93ee5ca805 Fix Sema and IRGen for atomic compound assignment so it has the right semantics when promotions are involved.
(As far as I can tell, this only affects some edge cases.)

llvm-svn: 158591
2012-06-16 02:19:17 +00:00

24 lines
541 B
C

// 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*
// These should be emitting atomicrmw instructions, but they aren't yet
i += 2; // CHECK: cmpxchg
i -= 2; // CHECK: cmpxchg
i++; // CHECK: cmpxchg
i--; // CHECK: cmpxchg
}