They pass on x86_64 host, arm64 host, and Android. Reviewed By: vitalybuka Differential Revision: https://reviews.llvm.org/D156273
6 lines
122 B
C
6 lines
122 B
C
// Tests pthread_exit.
|
|
// RUN: %clang_hwasan %s -o %t && %run %t
|
|
|
|
#include <pthread.h>
|
|
int main() { pthread_exit(NULL); }
|