From 1db10cc5ad873e9ccfcfe229a23fea5fa1d8de09 Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Sat, 26 Aug 2006 16:07:31 +0000 Subject: [PATCH] - Remove useless stack operations in KiInterruptDispatch that I used for debugging. svn path=/trunk/; revision=23722 --- reactos/ntoskrnl/ke/i386/trap.s | 4 ---- 1 file changed, 4 deletions(-) diff --git a/reactos/ntoskrnl/ke/i386/trap.s b/reactos/ntoskrnl/ke/i386/trap.s index caebd0fcd93..087aefc7fb7 100644 --- a/reactos/ntoskrnl/ke/i386/trap.s +++ b/reactos/ntoskrnl/ke/i386/trap.s @@ -1446,7 +1446,6 @@ _KiInterruptDispatch@0: /* Check if it was handled */ or eax, eax jz SpuriousInt - sub esp, 12 /* Acquire the lock */ GetIntLock: @@ -1462,9 +1461,6 @@ GetIntLock: /* Release the lock */ RELEASE_SPINLOCK(esi) - /* Clean up the stack */ - add esp, 12 - /* Exit the interrupt */ mov esi, $ cli