You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
594 B
27 lines
594 B
// RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
|
|
#include <stdlib.h>
|
|
|
|
void __attribute__((noinline)) foo(int *mem) {
|
|
free(mem);
|
|
}
|
|
|
|
void __attribute__((noinline)) bar(int *mem) {
|
|
mem[0] = 42;
|
|
}
|
|
|
|
int main() {
|
|
int *mem = (int*)malloc(100);
|
|
foo(mem);
|
|
bar(mem);
|
|
return 0;
|
|
}
|
|
|
|
// CHECK: WARNING: ThreadSanitizer: heap-use-after-free
|
|
// CHECK: Write of size 4 at {{.*}} by main thread:
|
|
// CHECK: #0 bar
|
|
// CHECK: #1 main
|
|
// CHECK: Previous write of size 8 at {{.*}} by main thread:
|
|
// CHECK: #0 free
|
|
// CHECK: #{{1|2}} foo
|
|
// CHECK: #{{2|3}} main
|