Appease a build bot complaining about an unused variable that's used in an assertion.
authorPhilip Reames <listmail@philipreames.com>
Tue, 2 Dec 2014 19:28:57 +0000 (19:28 +0000)
committerPhilip Reames <listmail@philipreames.com>
Tue, 2 Dec 2014 19:28:57 +0000 (19:28 +0000)
llvm-svn: 223142

llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp

index 2e31c28..137403f 100644 (file)
@@ -230,6 +230,7 @@ static SDNode *lowerCallFromStatepoint(const CallInst &CI,
 
   int NumCallArgs = dyn_cast<ConstantInt>(CI.getArgOperand(1))->getZExtValue();
   assert(NumCallArgs >= 0 && "non-negative");
+  (void)NumCallArgs;
 
   ImmutableStatepoint StatepointOperands(&CI);