Mercurial > hg > CbC > CbC_llvm
view compiler-rt/test/hwasan/TestCases/pthread_exit.c @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children | 1f2b6ac9f198 |
line wrap: on
line source
// Tests pthread_exit. // RUN: %clang_hwasan %s -o %t && %run %t // REQUIRES: stable-runtime #include <pthread.h> int main() { pthread_exit(NULL); }