Commit 21d12b80 by Richard Stallman

(simplify_binary_operation): For DIV by 0, do nothing.

From-SVN: r2066
parent 2040c37b
......@@ -3224,7 +3224,7 @@ simplify_binary_operation (code, mode, op0, op1)
case DIV:
#ifndef REAL_INFINITY
if (f1 == 0)
abort ();
return 0;
#endif
value = f0 / f1;
break;
......
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