view compiler-rt/test/tsan/vptr_harmful_race4.cpp @ 266:00f31e85ec16 default tip

Added tag current for changeset 31d058e83c98
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 14 Oct 2023 10:13:55 +0900
parents 1d019706d866
children
line wrap: on
line source

// RUN: %clangxx_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
#include "test.h"

struct A {
  virtual void F() {
  }

  virtual ~A() {
  }
};

struct B : A {
  virtual void F() {
  }
};

void *Thread(void *x) {
  barrier_wait(&barrier);
  ((A*)x)->F();
  return 0;
}

int main() {
  barrier_init(&barrier, 2);
  A *obj = new B;
  pthread_t t;
  pthread_create(&t, 0, Thread, obj);
  delete obj;
  barrier_wait(&barrier);
  pthread_join(t, 0);
}

// CHECK: WARNING: ThreadSanitizer: heap-use-after-free (virtual call vs free)