From f814a511dad178b6a905e4c04800d514a344eac4 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. llvm-svn: 223142 --- llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp index 2e31c28..137403f 100644 --- a/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp +++ b/llvm/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); -- 2.7.4