Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / tsan / simple_race.c
blobb4234acd7f89f2e609b06af25e15edcb0c5b8df4
1 // RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
2 #include "test.h"
4 int Global;
6 void *Thread1(void *x) {
7 barrier_wait(&barrier);
8 Global = 42;
9 return NULL;
12 void *Thread2(void *x) {
13 Global = 43;
14 barrier_wait(&barrier);
15 return NULL;
18 int main() {
19 barrier_init(&barrier, 2);
20 pthread_t t[2];
21 pthread_create(&t[0], NULL, Thread1, NULL);
22 pthread_create(&t[1], NULL, Thread2, NULL);
23 pthread_join(t[0], NULL);
24 pthread_join(t[1], NULL);
25 return 0;
28 // CHECK: WARNING: ThreadSanitizer: data race