(simplify_if_then_else): Fix typo: "|" should be "||".
authorRichard Kenner <kenner@gcc.gnu.org>
Wed, 11 Jan 1995 00:09:14 +0000 (19:09 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Wed, 11 Jan 1995 00:09:14 +0000 (19:09 -0500)
From-SVN: r8731

gcc/combine.c

index b5bb122ed04f5cb1da2072d4369cf1f80899d78c..d7248bf610fa4127798e17451fafd8635c928f60 100644 (file)
@@ -1,5 +1,5 @@
 /* Optimize by combining instructions for GNU compiler.
-   Copyright (C) 1987, 1988, 1992, 1993, 1994 Free Software Foundation, Inc.
+   Copyright (C) 1987, 88, 92, 93, 94, 1995 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -3992,7 +3992,7 @@ simplify_if_then_else (x)
 
   /* Look for MIN or MAX.  */
 
-  if ((! FLOAT_MODE_P (mode) | flag_fast_math)
+  if ((! FLOAT_MODE_P (mode) || flag_fast_math)
       && comparison_p
       && rtx_equal_p (XEXP (cond, 0), true)
       && rtx_equal_p (XEXP (cond, 1), false)