From 1024a3777d981698e8a60c5b86c21ea5b05c5835 Mon Sep 17 00:00:00 2001 From: Davide Italiano Date: Fri, 3 Nov 2017 23:03:38 +0000 Subject: [PATCH] [CallSiteSplitting] Silence GCC's -Wparentheses. NFCI. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@317385 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/CallSiteSplitting.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Transforms/Scalar/CallSiteSplitting.cpp b/lib/Transforms/Scalar/CallSiteSplitting.cpp index 2224cb2eb62..5e6bfc73ca5 100644 --- a/lib/Transforms/Scalar/CallSiteSplitting.cpp +++ b/lib/Transforms/Scalar/CallSiteSplitting.cpp @@ -126,8 +126,8 @@ static bool createCallSitesOnOrPredicatedArgument( Instruction *&CallUntakenFromHeader = IsCSInTakenPath ? NewCSTakenFromNextCond : NewCSTakenFromHeader; - assert(Pred == ICmpInst::ICMP_EQ || - Pred == ICmpInst::ICMP_NE && + assert((Pred == ICmpInst::ICMP_EQ || + Pred == ICmpInst::ICMP_NE) && "Unexpected predicate in an OR condition"); // Set the constant value for agruments in the call predicated based on -- 2.40.0