blob: 5cd6bd74ebee5b5ceacd96a40b731a339814c9e8 [file] [log] [blame]
Stephen Hines2d1fdb22014-05-28 23:58:16 -07001// RUN: %clangxx_tsan %s -o %t
2// RUN: %run %t 2>&1 | FileCheck %s
3
4#include "bench.h"
5
6int x;
7
8void thread(int tid) {
9 for (int i = 0; i < bench_niter; i++)
10 __atomic_load_n(&x, __ATOMIC_ACQUIRE);
11}
12
13void bench() {
14 __atomic_store_n(&x, 0, __ATOMIC_RELEASE);
15 start_thread_group(bench_nthread, thread);
16}
17
18// CHECK: DONE
19