blob: 6f773bef48cdaf88e91e523d88b9e06af1085668 [file] [log] [blame]
David Chisnall7a7ee302012-01-16 17:27:18 +00001// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2
3// Check that no atomic operations are used in any initialisation of _Atomic
4// types.
5
6_Atomic(int) i = 42;
7
8void foo()
9{
10 _Atomic(int) j = 12; // CHECK: store
11 // CHECK-NOT: atomic
Richard Smithfafbf062012-04-11 17:55:32 +000012 __c11_atomic_init(&j, 42); // CHECK: store
13 // CHECK-NOT: atomic
David Chisnall7a7ee302012-01-16 17:27:18 +000014}