Changeset 83782 in vbox
- Timestamp:
- Apr 17, 2020 10:30:23 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137308
- Location:
- trunk/include/iprt
- Files:
-
- 5 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/asm-amd64-x86.h
r83776 r83782 38 38 #if defined(_MSC_VER) && RT_INLINE_ASM_USES_INTRIN 39 39 /* Emit the intrinsics at all optimization levels. */ 40 # include <iprt/ win/msvc_intrin.h>40 # include <iprt/sanitized/intrin.h> 41 41 # pragma intrinsic(_ReadWriteBarrier) 42 42 # pragma intrinsic(__cpuid) -
trunk/include/iprt/asm-math.h
r83776 r83782 34 34 #if defined(_MSC_VER) && RT_INLINE_ASM_USES_INTRIN 35 35 /* Emit the intrinsics at all optimization levels. */ 36 # include <iprt/ win/msvc_intrin.h>36 # include <iprt/sanitized/intrin.h> 37 37 # pragma intrinsic(__emul) 38 38 # pragma intrinsic(__emulu) -
trunk/include/iprt/asm.h
r83776 r83782 45 45 #if defined(_MSC_VER) && RT_INLINE_ASM_USES_INTRIN 46 46 /* Emit the intrinsics at all optimization levels. */ 47 # include <iprt/ win/msvc_intrin.h>47 # include <iprt/sanitized/intrin.h> 48 48 # pragma intrinsic(_ReadWriteBarrier) 49 49 # pragma intrinsic(__cpuid) -
trunk/include/iprt/nt/ntddk.h
r83776 r83782 31 31 32 32 /* Make sure we get the right prototypes. */ 33 #include <iprt/ win/msvc_intrin.h>33 #include <iprt/sanitized/intrin.h> 34 34 35 35 #define _InterlockedExchange _InterlockedExchange_StupidDDKVsCompilerCrap -
trunk/include/iprt/nt/wdm.h
r83776 r83782 31 31 32 32 /* Make sure we get the right prototypes. */ 33 #include <iprt/ win/msvc_intrin.h>33 #include <iprt/sanitized/intrin.h> 34 34 35 35 #define _InterlockedExchange _InterlockedExchange_StupidDDKVsCompilerCrap -
trunk/include/iprt/sanitized/intrin.h
r83781 r83782 24 24 */ 25 25 26 #ifndef IPRT_INCLUDED_ win_msvc_intrin_h27 #define IPRT_INCLUDED_ win_msvc_intrin_h26 #ifndef IPRT_INCLUDED_sanitized_intrin_h 27 #define IPRT_INCLUDED_sanitized_intrin_h 28 28 #ifndef RT_WITHOUT_PRAGMA_ONCE 29 29 # pragma once … … 49 49 #endif 50 50 51 #endif /* !IPRT_INCLUDED_ win_msvc_intrin_h */51 #endif /* !IPRT_INCLUDED_sanitized_intrin_h */ 52 52
Note:
See TracChangeset
for help on using the changeset viewer.