From: Richard Stallman Date: Mon, 7 Sep 1992 05:32:35 +0000 (+0000) Subject: (simplify_binary_operation): For DIV by 0, do nothing. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=21d12b804d4031c15fcc61b1558f74ce9413e123;p=gcc.git (simplify_binary_operation): For DIV by 0, do nothing. From-SVN: r2066 --- diff --git a/gcc/cse.c b/gcc/cse.c index 24dbac63c5f..e76a1300d81 100644 --- a/gcc/cse.c +++ b/gcc/cse.c @@ -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;