forked from OSchip/llvm-project
AArch64ISelLowering.cpp: Fix a warning. [-Wunused-variable]
llvm-svn: 258618
This commit is contained in:
parent
75e9d64aa2
commit
9974fa9c8c
|
@ -1449,6 +1449,7 @@ static SDValue emitConjunctionDisjunctionTreeRec(SelectionDAG &DAG, SDValue Val,
|
|||
bool NeedsNegOutR = RHS->getOpcode() == ISD::OR;
|
||||
assert((!NeedsNegOutR || !NeedsNegOutL) &&
|
||||
"Valid conjunction/disjunction tree");
|
||||
(void)NeedsNegOutR;
|
||||
// Order the side where we need to negate the output flags to RHS so it
|
||||
// gets emitted first.
|
||||
if (NeedsNegOutL)
|
||||
|
|
Loading…
Reference in New Issue