mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 00:50:23 +00:00
[SDK x64] Fix MSVC x64 compilation after 5d7dd4a3b5
This commit is contained in:
parent
db35a7861f
commit
d74df8af74
1 changed files with 8 additions and 0 deletions
|
@ -156,9 +156,17 @@ MACRO(ExitTrap, Flags)
|
|||
/* Check previous irql */
|
||||
mov rax, cr8
|
||||
cmp [rbp + KTRAP_FRAME_PreviousIrql], al
|
||||
#ifdef _USE_ML
|
||||
je .irql_ok
|
||||
#else
|
||||
je 1f
|
||||
#endif
|
||||
int 3
|
||||
#ifdef _USE_ML
|
||||
.irql_ok:
|
||||
#else
|
||||
1:
|
||||
#endif
|
||||
#endif
|
||||
|
||||
if (Flags AND TF_SEGMENTS)
|
||||
|
|
Loading…
Reference in a new issue