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.
13 lines
358 B
13 lines
358 B
// RUN: %clangxx_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
|
|
extern "C" void AnnotateIgnoreWritesBegin(const char *f, int l);
|
|
|
|
int main() {
|
|
AnnotateIgnoreWritesBegin("", 0);
|
|
}
|
|
|
|
// CHECK: ThreadSanitizer: main thread finished with ignores enabled
|
|
// CHECK: Ignore was enabled at:
|
|
// CHECK: #0 AnnotateIgnoreWritesBegin
|
|
// CHECK: #1 main
|
|
|