From: Viktor Kutuzov Date: Wed, 16 Jul 2014 10:05:29 +0000 (+0000) Subject: Add FreeBSD support to the address sanitizer's atexit_stats.cc test case X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f7dfafe7121943b8914ba5be27b86b109d125a06;p=platform%2Fupstream%2Fllvm.git Add FreeBSD support to the address sanitizer's atexit_stats.cc test case Differential Revision: http://reviews.llvm.org/D4524 llvm-svn: 213134 --- diff --git a/compiler-rt/test/asan/TestCases/atexit_stats.cc b/compiler-rt/test/asan/TestCases/atexit_stats.cc index b5a5fad..be65344 100644 --- a/compiler-rt/test/asan/TestCases/atexit_stats.cc +++ b/compiler-rt/test/asan/TestCases/atexit_stats.cc @@ -7,7 +7,7 @@ // XFAIL: android #include -#if !defined(__APPLE__) +#if !defined(__APPLE__) && !defined(__FreeBSD__) #include #endif int *p1 = (int*)malloc(900);