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

AArch64ISelLowering.cpp: Fix a warning. [-Wunused-variable]

llvm-svn: 258618
This commit is contained in:
NAKAMURA Takumi 2016-01-23 06:34:59 +00:00
parent d7f46a4f6c
commit c47ea12e00

View File

@ -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)