From 34c8be7241d8606e5f79cc849cca41a48efb1d43 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Tue, 10 Jan 1995 19:09:14 -0500 Subject: [PATCH] (simplify_if_then_else): Fix typo: "|" should be "||". From-SVN: r8731 --- gcc/combine.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.30.2