(simplify_binary_operation): For DIV by 0, do nothing.
authorRichard Stallman <rms@gnu.org>
Mon, 7 Sep 1992 05:32:35 +0000 (05:32 +0000)
committerRichard Stallman <rms@gnu.org>
Mon, 7 Sep 1992 05:32:35 +0000 (05:32 +0000)
From-SVN: r2066

gcc/cse.c

index 24dbac63c5f75b56bb2966a86ea0215c2d4dc7c4..e76a1300d81acc0352d40b5c574bac79e47c52a8 100644 (file)
--- 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;