1 // RUN: %clangxx_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
27 static A
*obj
= new B
;
28 static void (A::*fn
)() = &A::F
;
30 void *Thread1(void *x
) {
32 barrier_wait(&barrier
);
37 void *Thread2(void *x
) {
38 barrier_wait(&barrier
);
44 barrier_init(&barrier
, 2);
46 pthread_create(&t
[0], NULL
, Thread1
, NULL
);
47 pthread_create(&t
[1], NULL
, Thread2
, NULL
);
48 pthread_join(t
[0], NULL
);
49 pthread_join(t
[1], NULL
);
52 // CHECK: WARNING: ThreadSanitizer: data race on vptr