From eddfaaf07e0c538fe4ac74e6677f644594c1ceee Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Mon, 21 Dec 2009 23:27:57 +0000 Subject: [PATCH] Add suggested parentheses. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91853 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/InstructionCombining.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index ca60219b909..72dc26ef858 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -9598,10 +9598,10 @@ Instruction *InstCombiner::FoldSPFofSPF(Instruction *Inner, // MAX(MIN(a, b), a) -> a // MIN(MAX(a, b), a) -> a - if (SPF1 == SPF_SMIN && SPF2 == SPF_SMAX || - SPF1 == SPF_SMAX && SPF2 == SPF_SMIN || - SPF1 == SPF_UMIN && SPF2 == SPF_UMAX || - SPF1 == SPF_UMAX && SPF2 == SPF_UMIN) + if ((SPF1 == SPF_SMIN && SPF2 == SPF_SMAX) || + (SPF1 == SPF_SMAX && SPF2 == SPF_SMIN) || + (SPF1 == SPF_UMIN && SPF2 == SPF_UMAX) || + (SPF1 == SPF_UMAX && SPF2 == SPF_UMIN)) return ReplaceInstUsesWith(Outer, C); } -- 2.34.1