Skip to content

Commit

Permalink
Silence a -Wparentheses warning; NFC.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@258676 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
junmopark-sec committed Jan 25, 2016
1 parent 3c30413 commit 8000639
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Target/AArch64/AArch64ISelLowering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1414,8 +1414,8 @@ static SDValue emitConjunctionDisjunctionTreeRec(SelectionDAG &DAG, SDValue Val,
return emitConditionalComparison(LHS, RHS, CC, CCOp, Predicate, OutCC, DL,
DAG);
}
assert(Opcode == ISD::AND || (Opcode == ISD::OR && Val->hasOneUse())
&& "Valid conjunction/disjunction tree");
assert((Opcode == ISD::AND || (Opcode == ISD::OR && Val->hasOneUse())) &&
"Valid conjunction/disjunction tree");

// Check if both sides can be transformed.
SDValue LHS = Val->getOperand(0);
Expand Down

0 comments on commit 8000639

Please sign in to comment.