(simplify_if_then_else): Fix typo: "|" should be "||".

From-SVN: r8731
This commit is contained in:
Richard Kenner 1995-01-10 19:09:14 -05:00
parent 7f0b305c5a
commit 34c8be7241

View File

@ -1,5 +1,5 @@
/* Optimize by combining instructions for GNU compiler. /* 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. This file is part of GNU CC.
@ -3992,7 +3992,7 @@ simplify_if_then_else (x)
/* Look for MIN or MAX. */ /* Look for MIN or MAX. */
if ((! FLOAT_MODE_P (mode) | flag_fast_math) if ((! FLOAT_MODE_P (mode) || flag_fast_math)
&& comparison_p && comparison_p
&& rtx_equal_p (XEXP (cond, 0), true) && rtx_equal_p (XEXP (cond, 0), true)
&& rtx_equal_p (XEXP (cond, 1), false) && rtx_equal_p (XEXP (cond, 1), false)