Quiet a compiler warning about unused variable 'ExtVNI'.

llvm-svn: 126815
diff --git a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
index 4b4d4bd..92829b1 100644
--- a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
+++ b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
@@ -794,6 +794,7 @@
 
     // Extend the live range for VNI to be live at Idx.
     if (VNInfo *ExtVNI = NewLI.extendInBlock(BlockStart, Idx)) {
+      (void)ExtVNI;
       assert(ExtVNI == VNI && "Unexpected existing value number");
       // Is this a PHIDef we haven't seen before?
       if (!VNI->isPHIDef() || !UsedPHIs.insert(VNI))