mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 23:15:39 +00:00
[ASM x64] Prevent having same label multiple times in ntoskrnl/ke/amd64/trap.S
This commit is contained in:
parent
c345f7f137
commit
5d7dd4a3b5
1 changed files with 2 additions and 2 deletions
|
@ -156,9 +156,9 @@ MACRO(ExitTrap, Flags)
|
||||||
/* Check previous irql */
|
/* Check previous irql */
|
||||||
mov rax, cr8
|
mov rax, cr8
|
||||||
cmp [rbp + KTRAP_FRAME_PreviousIrql], al
|
cmp [rbp + KTRAP_FRAME_PreviousIrql], al
|
||||||
je .irql_ok
|
je 1f
|
||||||
int 3
|
int 3
|
||||||
.irql_ok:
|
1:
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (Flags AND TF_SEGMENTS)
|
if (Flags AND TF_SEGMENTS)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue