mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 06:35:42 +00:00
[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:
parent
706a70c9e1
commit
5bf1fbec49
9 changed files with 23 additions and 23 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue