From: Richard Kenner Date: Wed, 11 Jan 1995 00:09:14 +0000 (-0500) Subject: (simplify_if_then_else): Fix typo: "|" should be "||". X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=34c8be7241d8606e5f79cc849cca41a48efb1d43;p=gcc.git (simplify_if_then_else): Fix typo: "|" should be "||". From-SVN: r8731 --- diff --git a/gcc/combine.c b/gcc/combine.c index b5bb122ed04..d7248bf610f 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -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)