summaryrefslogtreecommitdiff
path: root/lib/tsan/output_tests/suppress_same_address.cc
blob: 6e98970a16ef76949563e7dec3aff5887ab4ebf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <pthread.h>

int X;

void *Thread1(void *x) {
  X = 42;
  X = 66;
  X = 78;
  return 0;
}

void *Thread2(void *x) {
  X = 11;
  X = 99;
  X = 73;
  return 0;
}

int main() {
  pthread_t t;
  pthread_create(&t, 0, Thread1, 0);
  Thread2(0);
  pthread_join(t, 0);
}

// CHECK: ThreadSanitizer: reported 1 warnings