forked from OSchip/llvm-project
Fix -Wexpansion-to-defined warnings in compiler-rt.
llvm-svn: 258200
This commit is contained in:
parent
576dc8d27d
commit
82210fbc1e
|
@ -35,7 +35,11 @@
|
|||
#include <sys/file.h>
|
||||
#endif
|
||||
|
||||
#define I386_FREEBSD (defined(__FreeBSD__) && defined(__i386__))
|
||||
#if defined(__FreeBSD__) && defined(__i386__)
|
||||
#define I386_FREEBSD 1
|
||||
#else
|
||||
#define I386_FREEBSD 0
|
||||
#endif
|
||||
|
||||
#if !defined(_MSC_VER) && !I386_FREEBSD
|
||||
#include <stdint.h>
|
||||
|
|
|
@ -131,9 +131,13 @@
|
|||
#define SANITIZER_INTERCEPT_SYSINFO SI_LINUX
|
||||
#define SANITIZER_INTERCEPT_READDIR SI_NOT_WINDOWS
|
||||
#define SANITIZER_INTERCEPT_READDIR64 SI_LINUX_NOT_ANDROID
|
||||
#define SANITIZER_INTERCEPT_PTRACE SI_LINUX_NOT_ANDROID && \
|
||||
#if SI_LINUX_NOT_ANDROID && \
|
||||
(defined(__i386) || defined(__x86_64) || defined(__mips64) || \
|
||||
defined(__powerpc64__) || defined(__aarch64__) || defined(__arm__))
|
||||
#define SANITIZER_INTERCEPT_PTRACE 1
|
||||
#else
|
||||
#define SANITIZER_INTERCEPT_PTRACE 0
|
||||
#endif
|
||||
#define SANITIZER_INTERCEPT_SETLOCALE SI_NOT_WINDOWS
|
||||
#define SANITIZER_INTERCEPT_GETCWD SI_NOT_WINDOWS
|
||||
#define SANITIZER_INTERCEPT_GET_CURRENT_DIR_NAME SI_LINUX_NOT_ANDROID
|
||||
|
@ -237,7 +241,11 @@
|
|||
#define SANITIZER_INTERCEPT_IF_INDEXTONAME \
|
||||
SI_FREEBSD || SI_LINUX_NOT_ANDROID || SI_MAC
|
||||
#define SANITIZER_INTERCEPT_CAPGET SI_LINUX_NOT_ANDROID
|
||||
#define SANITIZER_INTERCEPT_AEABI_MEM SI_LINUX && defined(__arm__)
|
||||
#if SI_LINUX && defined(__arm__)
|
||||
#define SANITIZER_INTERCEPT_AEABI_MEM 1
|
||||
#else
|
||||
#define SANITIZER_INTERCEPT_AEABI_MEM 0
|
||||
#endif
|
||||
#define SANITIZER_INTERCEPT___BZERO SI_MAC
|
||||
#define SANITIZER_INTERCEPT_FTIME !SI_FREEBSD && SI_NOT_WINDOWS
|
||||
#define SANITIZER_INTERCEPT_XDR SI_LINUX_NOT_ANDROID
|
||||
|
|
Loading…
Reference in New Issue