1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

Silence a -Wparentheses warning; NFC.

llvm-svn: 258626
This commit is contained in:
Aaron Ballman 2016-01-23 15:42:21 +00:00
parent 37a0ceb144
commit ab11289986

View File

@ -1414,7 +1414,7 @@ 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()
assert(Opcode == ISD::AND || (Opcode == ISD::OR && Val->hasOneUse())
&& "Valid conjunction/disjunction tree");
// Check if both sides can be transformed.