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 /x86_64 | |
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 'x86_64')
-rw-r--r-- | x86_64/locore.S | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/x86_64/locore.S b/x86_64/locore.S index f3860b89..25dc15d0 100644 --- a/x86_64/locore.S +++ b/x86_64/locore.S @@ -852,8 +852,7 @@ ENTRY(all_intrs) #endif #ifdef MACH_LDEBUG - CPU_NUMBER(%ecx) - incl CX(EXT(in_interrupt),%rcx) + incl CX(EXT(in_interrupt),%rdx) #endif call EXT(interrupt) /* call generic interrupt routine */ |