[compiler-rt] Fix compilation error after r290626

llvm-svn: 290629
This commit is contained in:
Vitaly Buka 2016-12-27 21:30:20 +00:00
parent f24e52c0c2
commit ec494b2675
1 changed files with 3 additions and 1 deletions

View File

@ -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