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 ca60219..72dc26e 100644
--- a/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -9598,10 +9598,10 @@
// 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);
}