mirror of
https://github.com/reactos/reactos.git
synced 2026-06-20 22:17:03 +08: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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user