From 5eccf7b3df86ab9a14b28593baf070f42bff1c17 Mon Sep 17 00:00:00 2001 From: Philip Reames Date: Tue, 2 Dec 2014 19:28:57 +0000 Subject: [PATCH] Appease a build bot complaining about an unused variable that's used in an assertion. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223142 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/StatepointLowering.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/CodeGen/SelectionDAG/StatepointLowering.cpp b/lib/CodeGen/SelectionDAG/StatepointLowering.cpp index 2e31c282ae0..137403fc274 100644 --- a/lib/CodeGen/SelectionDAG/StatepointLowering.cpp +++ b/lib/CodeGen/SelectionDAG/StatepointLowering.cpp @@ -230,6 +230,7 @@ static SDNode *lowerCallFromStatepoint(const CallInst &CI, int NumCallArgs = dyn_cast(CI.getArgOperand(1))->getZExtValue(); assert(NumCallArgs >= 0 && "non-negative"); + (void)NumCallArgs; ImmutableStatepoint StatepointOperands(&CI);