1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Appease a build bot complaining about an unused variable that's used in an assertion.

llvm-svn: 223142
This commit is contained in:
Philip Reames 2014-12-02 19:28:57 +00:00
parent 11736cf595
commit 63f6675179

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