diff options
author | Damien Zammit <damien@zamaudio.com> | 2024-02-17 20:20:20 +1100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-02-18 10:02:53 +0100 |
commit | ff3f259ceab38064953e04384d2b529f7b9aca34 (patch) | |
tree | 4fe88f0e48e9c91043738ab562e37508f6e9da64 /i386 | |
parent | eb7b9cf26a71c9fea472a8fba18c699b6d98fe33 (diff) | |
download | gnumach-ff3f259ceab38064953e04384d2b529f7b9aca34.tar.gz gnumach-ff3f259ceab38064953e04384d2b529f7b9aca34.tar.bz2 gnumach-ff3f259ceab38064953e04384d2b529f7b9aca34.zip |
locore: Remove unnecessary call to CPU_NUMBER
The cpu number is already in edx register, so use that.
Diffstat (limited to 'i386')
-rw-r--r-- | i386/i386/locore.S | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/i386/i386/locore.S b/i386/i386/locore.S index 378297ff..9d0513a1 100644 --- a/i386/i386/locore.S +++ b/i386/i386/locore.S @@ -782,8 +782,7 @@ ENTRY(all_intrs) #endif #ifdef MACH_LDEBUG - CPU_NUMBER(%ecx) - incl CX(EXT(in_interrupt),%ecx) + incl CX(EXT(in_interrupt),%edx) #endif call EXT(interrupt) /* call generic interrupt routine */ |