Use V for values, not D.
authorChris Lattner <sabre@nondot.org>
Sat, 4 Oct 2003 19:29:21 +0000 (19:29 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 4 Oct 2003 19:29:21 +0000 (19:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8848 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bytecode/Reader/Reader.cpp

index c69e680be24172db5bf1fb3edba7a13297849cc6..321a26f4c4e71c973cc6978a7697662e8e225780 100644 (file)
@@ -192,29 +192,28 @@ Constant *BytecodeParser::getConstantValue(const Type *Ty, unsigned Slot) {
 
 void BytecodeParser::postResolveValues(ValueTable &ValTab) {
   while (!ValTab.empty()) {
-    ValueList &DL = *ValTab.back();
+    ValueList &VL = *ValTab.back();
     ValTab.pop_back();    
 
-    while (!DL.empty()) {
-      Value *D = DL.back();
-      unsigned IDNumber = getValueIDNumberFromPlaceHolder(D);
-      DL.pop_back();
+    while (!VL.empty()) {
+      Value *V = VL.back();
+      unsigned IDNumber = getValueIDNumberFromPlaceHolder(V);
+      VL.pop_back();
 
-      Value *NewDef = getValue(D->getType(), IDNumber, false);
-      if (NewDef == 0) {
+      Value *NewVal = getValue(V->getType(), IDNumber, false);
+      if (NewVal == 0)
         throw std::string("Unresolvable reference found: <" +
-                          D->getType()->getDescription() + ">:" + 
+                          V->getType()->getDescription() + ">:" + 
                           utostr(IDNumber) + ".");
-      } else {
-        // Fixup all of the uses of this placeholder def...
-        D->replaceAllUsesWith(NewDef);
 
-        // Now that all the uses are gone, delete the placeholder...
-        // If we couldn't find a def (error case), then leak a little
-        delete D;  // memory, 'cause otherwise we can't remove all uses!
-      }
+      // Fixup all of the uses of this placeholder def...
+      V->replaceAllUsesWith(NewVal);
+      
+      // Now that all the uses are gone, delete the placeholder...
+      // If we couldn't find a def (error case), then leak a little
+      delete V;  // memory, 'cause otherwise we can't remove all uses!
     }
-    delete &DL;
+    delete &VL;
   }
 }