[UDFS] Do not take some of the msvc codepaths when compiling with clang-cl due to issues such as inline assembly support. CORE-11799 (#94)

This commit is contained in:
Amine Khaldi 2017-10-28 13:52:44 +01:00
parent 706a70c9e1
commit 5bf1fbec49
9 changed files with 23 additions and 23 deletions

View file

@ -806,7 +806,7 @@ MyAppendUnicodeToString_(
#define UDF_UNC_STR_TAG "AppStr"
#endif
#if defined (_X86_) && defined (_MSC_VER)
#if defined(_X86_) && defined(_MSC_VER) && !defined(__clang__)
__asm push ebx
__asm push esi
@ -868,7 +868,7 @@ MyInitUnicodeString(
USHORT i;
#if defined (_X86_) && defined (_MSC_VER)
#if defined(_X86_) && defined(_MSC_VER) && !defined(__clang__)
__asm push ebx
__asm push esi

View file

@ -455,7 +455,7 @@ WCacheGetSortedListIndex(
if(!BlockCount)
return 0;
#if defined (_X86_) && defined (_MSC_VER)
#if defined(_X86_) && defined(_MSC_VER) && !defined(__clang__)
__asm push ecx
__asm push ebx