bolt/deps/llvm-18.1.8/compiler-rt/test/tsan/pie_test.cpp

7 lines
124 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
// Check if tsan work with PIE binaries.
// RUN: %clang_tsan %s -pie -fpic -o %t && %run %t
int main(void) {
return 0;
}