diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-02-05 04:12:45 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-02-05 04:12:45 +0000 |
commit | 7d3c76265b2c3883608c9561b146c6d0adc2431d (patch) | |
tree | b11f345d3cf4ffa88ee1843904fe96429c7e4c58 /sys/arch/i386 | |
parent | 9131aa3b1e8d1c67d028bfca9c23a643844aa6ac (diff) |
Don't push _cpl before calling _npxintr, it is never used (or popped off
the stack!)
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/locore.s | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/locore.s b/sys/arch/i386/i386/locore.s index ef1675332b7..74f8738eee1 100644 --- a/sys/arch/i386/i386/locore.s +++ b/sys/arch/i386/i386/locore.s @@ -2036,7 +2036,9 @@ IDTVEC(fpu) pushl $0 # dummy error code pushl $T_ASTFLT INTRENTRY - pushl _cpl +#if 0 + pushl _cpl # this is apparently not used for anything +#endif pushl %esp incl _cnt+V_TRAP call _npxintr |