From: Daniel Dunbar Date: Mon, 21 Dec 2009 23:27:57 +0000 (+0000) Subject: Add suggested parentheses. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=eddfaaf07e0c538fe4ac74e6677f644594c1ceee;p=oota-llvm.git Add suggested parentheses. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91853 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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); }