[llvm-branch-commits] [llvm-branch] r91478 - /llvm/branches/Apple/Zoidberg/lib/CodeGen/BranchFolding.cpp

Bill Wendling isanbard at gmail.com
Tue Dec 15 16:01:56 PST 2009


Author: void
Date: Tue Dec 15 18:01:56 2009
New Revision: 91478

URL: http://llvm.org/viewvc/llvm-project?rev=91478&view=rev
Log:
$ svn merge -c 91477 https://llvm.org/svn/llvm-project/llvm/trunk
--- Merging r91477 into '.':
U    lib/CodeGen/BranchFolding.cpp


Modified:
    llvm/branches/Apple/Zoidberg/lib/CodeGen/BranchFolding.cpp

Modified: llvm/branches/Apple/Zoidberg/lib/CodeGen/BranchFolding.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/Apple/Zoidberg/lib/CodeGen/BranchFolding.cpp?rev=91478&r1=91477&r2=91478&view=diff

==============================================================================
--- llvm/branches/Apple/Zoidberg/lib/CodeGen/BranchFolding.cpp (original)
+++ llvm/branches/Apple/Zoidberg/lib/CodeGen/BranchFolding.cpp Tue Dec 15 18:01:56 2009
@@ -1274,7 +1274,7 @@
       // Okay, there is no really great place to put this block.  If, however,
       // the block before this one would be a fall-through if this block were
       // removed, move this block to the end of the function.
-      MachineBasicBlock *PrevTBB, *PrevFBB;
+      MachineBasicBlock *PrevTBB = 0, *PrevFBB = 0;
       SmallVector<MachineOperand, 4> PrevCond;
       if (FallThrough != MF.end() &&
           !TII->AnalyzeBranch(PrevBB, PrevTBB, PrevFBB, PrevCond, true) &&





More information about the llvm-branch-commits mailing list