[asan] Add a missing return.

It is technically reachable on Android, where pthread_exit is not
marked noreturn.

llvm-svn: 150381
This commit is contained in:
Evgeniy Stepanov 2012-02-13 12:36:44 +00:00
parent f1a13f29f2
commit 450c123218
1 changed files with 1 additions and 0 deletions

View File

@ -1643,6 +1643,7 @@ TEST(AddressSanitizer, ThreadedStressStackReuseTest) {
static void *PthreadExit(void *a) {
pthread_exit(0);
return 0;
}
TEST(AddressSanitizer, PthreadExitTest) {