diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-01-10 19:09:14 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-01-10 19:09:14 -0500 |
commit | 34c8be7241d8606e5f79cc849cca41a48efb1d43 (patch) | |
tree | 50b26209586c37d7f82024bbfd0c0c01e129ff2b | |
parent | 7f0b305c5a35094bc999835d1ab1fa942e6d7ebf (diff) | |
download | gcc-34c8be7241d8606e5f79cc849cca41a48efb1d43.zip gcc-34c8be7241d8606e5f79cc849cca41a48efb1d43.tar.gz gcc-34c8be7241d8606e5f79cc849cca41a48efb1d43.tar.bz2 |
(simplify_if_then_else): Fix typo: "|" should be "||".
From-SVN: r8731
-rw-r--r-- | gcc/combine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index b5bb122..d7248bf6 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) |