mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-02 07:41:38 +00: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,
|
return emitConditionalComparison(LHS, RHS, CC, CCOp, Predicate, OutCC, DL,
|
||||||
DAG);
|
DAG);
|
||||||
}
|
}
|
||||||
assert(Opcode == ISD::AND || Opcode == ISD::OR && Val->hasOneUse()
|
assert(Opcode == ISD::AND || (Opcode == ISD::OR && Val->hasOneUse())
|
||||||
&& "Valid conjunction/disjunction tree");
|
&& "Valid conjunction/disjunction tree");
|
||||||
|
|
||||||
// Check if both sides can be transformed.
|
// Check if both sides can be transformed.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user