forked from OSchip/llvm-project
[ASan] fix compilation of atexit_stats.cc on OSX
llvm-svn: 192973
This commit is contained in:
parent
87dacc38b8
commit
2fe16d720c
|
@ -2,7 +2,9 @@
|
|||
// RUN: %clangxx_asan -O3 %s -o %t
|
||||
// RUN: ASAN_OPTIONS=atexit=1:print_stats=1 %t 2>&1 | FileCheck %s
|
||||
#include <stdlib.h>
|
||||
#if !defined(__APPLE__)
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
int *p1 = (int*)malloc(900);
|
||||
int *p2 = (int*)malloc(90000);
|
||||
int *p3 = (int*)malloc(9000000);
|
||||
|
|
Loading…
Reference in New Issue