Commit 1c819f89 authored by Richard Henderson's avatar Richard Henderson Committed by Richard Henderson

Fix merge error in do_entArith: don't send SIGFPE on

successful emulation.  From Ivan.
parent 7985f163
......@@ -223,6 +223,8 @@ do_entArith(unsigned long summary, unsigned long write_mask,
si_code = alpha_fp_emul(regs->pc - 4);
else
si_code = alpha_fp_emul_imprecise(regs, write_mask);
if (si_code == 0)
return;
}
die_if_kernel("Arithmetic fault", regs, 0, 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment