[llvm-commits] CVS: llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp

Chris Lattner lattner at cs.uiuc.edu
Tue Sep 10 17:53:01 PDT 2002


Changes in directory llvm/lib/Transforms/Utils:

UnifyFunctionExitNodes.cpp updated: 1.19 -> 1.20

---
Log message:

Fix minor problems in previous checkin


---
Diffs of the changes:

Index: llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
diff -u llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp:1.19 llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp:1.20
--- llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp:1.19	Tue Sep 10 17:38:49 2002
+++ llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp	Tue Sep 10 17:52:49 2002
@@ -50,7 +50,7 @@
   if (F.getReturnType() != Type::VoidTy) {
     // If the function doesn't return void... add a PHI node to the block...
     PHINode *PN = new PHINode(F.getReturnType(), "UnifiedRetVal",
-                              NewRetBlock.end());
+                              NewRetBlock->end());
 
     // Add an incoming element to the PHI node for every return instruction that
     // is merging into this new block...
@@ -59,10 +59,10 @@
       PN->addIncoming((*I)->getTerminator()->getOperand(0), *I);
 
     // Add a return instruction to return the result of the PHI node...
-    new ReturnInst(PN, NewRetBlock.end());
+    new ReturnInst(PN, NewRetBlock->end());
   } else {
     // If it returns void, just add a return void instruction to the block
-    new ReturnInst(0, NewRetBlock.end());
+    new ReturnInst(0, NewRetBlock->end());
   }
 
   // Loop over all of the blocks, replacing the return instruction with an





More information about the llvm-commits mailing list