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

From-SVN: r2066
This commit is contained in:
Richard Stallman 1992-09-07 05:32:35 +00:00
parent 2040c37b07
commit 21d12b804d
1 changed files with 1 additions and 1 deletions

View File

@ -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;