summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2016-01-23 06:34:59 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2016-01-23 06:34:59 +0000
commit9974fa9c8c234019b92c6c8485bbbc18314c2bc7 (patch)
treeae3dd1fe4f329b2e00ed138e53e6d468e8db521f
parent75e9d64aa24e31085bde50d0678a4027dcf38dd1 (diff)
downloadbcm5719-llvm-9974fa9c8c234019b92c6c8485bbbc18314c2bc7.tar.gz
bcm5719-llvm-9974fa9c8c234019b92c6c8485bbbc18314c2bc7.zip
AArch64ISelLowering.cpp: Fix a warning. [-Wunused-variable]
llvm-svn: 258618
-rw-r--r--llvm/lib/Target/AArch64/AArch64ISelLowering.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
index 41c9a3e78a7..c89becd0c81 100644
--- a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+++ b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
@@ -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)
OpenPOWER on IntegriCloud