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:
parent
37a0ceb144
commit
ab11289986
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user