Fix -Wparentheses warning

llvm-svn: 296246
This commit is contained in:
Vedant Kumar 2017-02-25 06:47:00 +00:00
parent 502bbfafca
commit 66c00cc439
1 changed files with 2 additions and 2 deletions

View File

@ -81,8 +81,8 @@ static bool IsWidenedIntegerOp(const ASTContext &Ctx, const Expr *E) {
/// Check if we can skip the overflow check for \p Op.
static bool CanElideOverflowCheck(const ASTContext &Ctx, const BinOpInfo &Op) {
assert(isa<UnaryOperator>(Op.E) ||
isa<BinaryOperator>(Op.E) && "Expected a unary or binary operator");
assert((isa<UnaryOperator>(Op.E) || isa<BinaryOperator>(Op.E)) &&
"Expected a unary or binary operator");
if (const auto *UO = dyn_cast<UnaryOperator>(Op.E))
return IsWidenedIntegerOp(Ctx, UO->getSubExpr());