patch-2.0.29 linux/arch/alpha/kernel/traps.c
Next file: linux/arch/i386/kernel/irq.c
Previous file: linux/arch/alpha/kernel/bios32.c
Back to the patch index
Back to the overall index
- Lines: 16
- Date:
Sun Feb 2 15:00:20 1997
- Orig file:
v2.0.28/linux/arch/alpha/kernel/traps.c
- Orig date:
Sun May 19 17:02:31 1996
diff -u --recursive --new-file v2.0.28/linux/arch/alpha/kernel/traps.c linux/arch/alpha/kernel/traps.c
@@ -236,13 +236,13 @@
exp = (exp_msb << 10) | exp_low; /* common case */
if (exp_msb) {
if (exp_low == 0x7f) {
- exp = 0x3ff;
+ exp = 0x7ff;
}
} else {
if (exp_low == 0x00) {
exp = 0x000;
} else {
- exp |= (0x7 << 8);
+ exp |= (0x7 << 7);
}
}
return (sign << 63) | (exp << 52) | (frac << 29);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov