[ASan/Win] Add a comment about DCL-using-static vs threads
[blocksruntime.git] / test / tsan / bench_acquire_release.cc
blob9e53a7b26efabbf4a730f5d3d8966655738c85f2
1 // RUN: %clangxx_tsan %s -o %t
2 // RUN: %run %t 2>&1 | FileCheck %s
4 #include "bench.h"
6 int x;
8 void thread(int tid) {
9 for (int i = 0; i < bench_niter; i++)
10 __atomic_fetch_add(&x, 1, __ATOMIC_ACQ_REL);
13 void bench() {
14 start_thread_group(bench_nthread, thread);
17 // CHECK: DONE