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