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
This commit is contained in:
Philip Reames 2014-12-02 19:28:57 +00:00
parent efcedf94c4
commit 5eccf7b3df

View 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);