forked from OSchip/llvm-project
[compiler-rt] Fix compilation error after r290626
llvm-svn: 290629
This commit is contained in:
parent
f24e52c0c2
commit
ec494b2675
|
@ -72,9 +72,11 @@
|
|||
|
||||
// Platform-specific options.
|
||||
#if SANITIZER_MAC
|
||||
namespace __sanitizer {
|
||||
bool PlatformHasDifferentMemcpyAndMemmove();
|
||||
}
|
||||
#define PLATFORM_HAS_DIFFERENT_MEMCPY_AND_MEMMOVE \
|
||||
(PlatformHasDifferentMemcpyAndMemmove())
|
||||
(__sanitizer::PlatformHasDifferentMemcpyAndMemmove())
|
||||
#elif SANITIZER_WINDOWS64
|
||||
#define PLATFORM_HAS_DIFFERENT_MEMCPY_AND_MEMMOVE false
|
||||
#else
|
||||
|
|
Loading…
Reference in New Issue