Silence unused variable warning

llvm-svn: 135339
diff --git a/llvm/lib/CodeGen/SplitKit.cpp b/llvm/lib/CodeGen/SplitKit.cpp
index b0806a5..761cab7 100644
--- a/llvm/lib/CodeGen/SplitKit.cpp
+++ b/llvm/lib/CodeGen/SplitKit.cpp
@@ -1292,6 +1292,7 @@
   // means we need to create a local interval that can be allocated a
   // different register.
   unsigned LocalIntv = openIntv();
+  (void)LocalIntv;
   DEBUG(dbgs() << ", creating local interval " << LocalIntv << ".\n");
 
   if (!BI.LiveOut || BI.LastUse < LSP) {